.l-page {
    padding-bottom: 0;
}

/*---------
ページ内リンクボタン
----------*/

/* 調整 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

.page_link_box {
    margin-bottom: 65px;
}

.page_link_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page_link_item {
    max-width: 300px;
    width: 100%;
    height: 60px;
    margin: 0 auto;
}

.page_link_item_btn {
    width: 100%;
    height: 100%;
    background: var(--sub-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--main-color);
    font-weight: bold;
    line-height: calc(28 / 16);
    position: relative;
}

.page_link_item_btn::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px var(--main-color);
    border-right: solid 2px var(--main-color);
    transform: rotate(135deg);
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

@media (min-width:768px) {

    .page_link_box {
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
    }

    .page_link_list {
        flex-direction: row;
        justify-content: center;
        gap: clamp(16px, 3vw, 35px);
        width: calc((230px * 4) + (35px * 3));
        margin-right: 20px;
        margin-left: 20px;
    }

    .page_link_item {
        width: clamp(150px, 18vw, 230px);
        max-width: 100%;
        height: 50px;
        margin: 0;
    }

    .page_link_item_btn {
        border: 1px solid var(--sub-color);
        transition: background-color 0.2s ease;
        font-size: clamp(14px, 1.2vw + 3px, 16px);
        word-break: keep-all;
        text-align: center;
    }

    .page_link_item_btn:hover {
        background: transparent;
        border: 1px solid var(--main-color);
    }

    .page_link_item_btn::after {
        top: 65px;
    }
}



/*---------
共通
----------*/

[class*="section_content"] {
    position: relative;
    padding: 90px 0 40px;
    z-index: 0;
}


.section_menu_title {
    font-size: 22px;
    font-weight: bold;
    line-height: calc(22 / 22);
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.section_menu_title::after {
    position: absolute;
    white-space: pre-wrap;
    font-size: 38px;
    font-weight: bold;
    line-height: calc(38 / 38);
    font-family: var(--sub-font);
    text-align: center;
    top: -48px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 292px;
    z-index: -1;
}

.section_menu_text {
    font-size: 16px;
    line-height: calc(28 / 16);
    text-align: center;
    margin-bottom: 25px;
}

.food_menu_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
}

.food_item {
    width: 100%;
    max-width: 150px;
}

.food_item_detail {
    min-width: 0;
    /* flexのはみ出し防止 */
}

.food_photo {
    width: 100%;
    margin: 0 auto 10px;
}

.food_photo img {
    border-radius: 10px;
}

.food_title {
    font-size: 16px;
    font-weight: bold;
    line-height: calc(28 / 16);
    text-align: center;
    padding-bottom: 2px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
}

.food_text {
    font-size: 14px;
    line-height: calc(26 / 14);
    overflow-wrap: anywhere;
    /* 長文・URL対策 */
    margin-bottom: 10px;
}

.food_price {
    font-size: 20px;
    font-weight: 500;
    line-height: calc(20 / 20);
    font-family: var(--sub-font);
    text-align: right;
}

.topping_box {
    background: #fff;
    border-radius: 7px;
    padding: 20px 13px;
    min-height: 152px;
}

.topping_flex_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 10px;
}

.topping_title {
    font-size: 16px;
    font-weight: bold;
    line-height: calc(32 / 16);
}

.topping_price {
    font-size: 14px;
    line-height: calc(14 / 14);
}

.topping_item_text {
    font-size: 16px;
    line-height: calc(28 / 16);
}

/* 背景色 */
.bg_color_yellow {
    background: linear-gradient(180deg, #F7DD11 0%, #FFF391 100%);
}

.bg_color_light_yellow {
    background: #FFF391;
}

.bg_color_white {
    background: #fff;
}

/*---------
APPLE ISLAND BANANA JUICE
----------*/

.section_content--banana-juice .section_menu_title::after {
    content: "APPLE ISLAND BANANA JUICE";
    color: var(--point-color);
}


/*---------
CHOCOLATE BANANA
----------*/

.section_content--chocolate-banana::before {
    content: "";
    position: absolute;
    background: url("../images/menu/sp-chocolate_left_square.png") center / cover no-repeat;
    aspect-ratio: 195 / 204;
    width: 195px;
    top: 0;
    left: 0;
    z-index: -2;
}

.section_content--chocolate-banana::after {
    content: "";
    position: absolute;
    background: url("../images/menu/sp-chocolate_right_square.png") center / cover no-repeat;
    aspect-ratio: 187 / 154;
    width: 187px;
    bottom: 0;
    right: 0;
    z-index: -2;
}


.section_content--chocolate-banana .section_menu_title::after {
    content: "CHOCOLATE BANANA";
    color: var(--sub-color);
    text-shadow:
        2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;

}


/*---------
BANANA CREPE
----------*/

.section_content--banana-crepe .section_menu_title::after {
    content: "BANANA CREPE";
    color: var(--point-color);
}


/*---------
TAKE OUT
----------*/

.section_content--takeout::before {
    content: "";
    position: absolute;
    background: url("../images/menu/sp-takeout_left_square.png") center / cover no-repeat;
    aspect-ratio: 195 / 204;
    width: 195px;
    top: 0;
    left: 0;
    z-index: -2;
}

.section_content--takeout::after {
    content: "";
    position: absolute;
    background: url("../images/menu/sp-takeout_right_square.png") center / cover no-repeat;
    aspect-ratio: 187 / 111;
    width: 187px;
    bottom: 0;
    right: 0;
    z-index: -2;
}

.section_content--takeout .section_menu_title::after {
    content: "TAKE OUT";
    color: var(--sub-color);
    top: -10px;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0-2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}


@media (min-width:768px) {
    /*---------
    共通
    ----------*/

    [class*="section_content"] {
        padding: 100px 20px 55px;
    }


    .section_menu_title {
        font-size: 30px;
        line-height: calc(40 / 30);
    }

    .section_menu_title::after {
        font-size: 92px;
        line-height: calc(92 / 92);
        top: -40px;
        max-width: 100%;
    }

    .section_menu_body {
        max-width: 780px;
        margin: 0 auto;
    }

    .section_menu_text {
        margin-bottom: 40px;
    }

    .food_menu_list {
        grid-template-columns: repeat(auto-fit, 220px);
        gap: 60px;
        margin-bottom: 60px;
    }

    .food_item {
        width: 100%;
        max-width: 220px;
    }

    .food_title {
        line-height: calc(32/ 16);
    }

    .food_price {
        font-size: 25px;
        line-height: calc(25 / 25);
    }

    .topping_box {
        padding: 20px 30px;
    }

    .topping_flex_box {
        gap: 115px;
        align-items: baseline;
        justify-content: inherit;
    }

    .topping_price {
        font-size: 16px;
        line-height: calc(32 / 16);
    }


    /*---------
    CHOCOLATE BANANA
    ----------*/

    .section_content--chocolate-banana::before {
        background: url("../images/menu/chocolate_left_square.png") center / cover no-repeat;
        aspect-ratio: 382 / 366;
        width: 382px;
    }

    .section_content--chocolate-banana::after {
        background: url("../images/menu/chocolate_right_square.png") center / cover no-repeat;
        aspect-ratio: 325 / 312;
        width: 325px;
    }


    /*---------
    TAKE OUT
    ----------*/

    .section_content--takeout::before {
        background: url("../images/menu/takeout_left_square.png") center / cover no-repeat;
        aspect-ratio: 382 / 366;
        width: 382px;
    }

    .section_content--takeout::after {
        background: url("../images/menu/takeout_right_square.png") center / cover no-repeat;
        aspect-ratio: 228 / 192;
        width: 228px;
    }

    .section_content--takeout .section_menu_title::after {
        top: -40px;
    }
}

/* レスポンシブ調整 */