﻿@charset 'utf-8';

body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	word-break: keep-all;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    text-align: left !important;
    line-break: strict;
    word-break: normal;
    box-sizing: border-box;
    margin: 0;
    bottom: 0;
    color: rgb(var(--color-000000));
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}
body * {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease-out;
}

/* -----------------------------------------
　Root
------------------------------------------*/
:root{


    /* colors */
    --color-ffffff: 255, 255, 255;
    --color-000000: 0, 0, 0;
    --color-e4e4e4: 228, 228, 228;
    --color-f39800: 243, 152, 0;
    --color-8fc31f: 143, 195, 31;
    --color-e60012: 230, 0, 18;
    --color-fff043: 255, 240, 67;
    --color-e01d1d: 224, 29, 29;
    --color-0e7676: 14, 118, 118;
    --color-2a8d8d: 42, 141, 141;
    --color-78bebe: 120, 190, 190;
    --color-b4d7d7: 180, 215, 215;
    --color-c45123: 196, 81, 35;
    --color-e65d29: 230, 93, 41;
    --color-faf3ef: 250, 243, 239;
    --color-6e5622: 110, 86, 34;
    --color-886d30: 136, 109, 48;
    --color-cbc4ae: 203, 196, 174;
    --color-f5f1ea: 245, 241, 234;
    --color-898989: 137, 137, 137;
    --color-2c7dff: 44, 125, 255;
    --color-faffff: 250, 255, 255;
    --color-fcfbf9: 252, 251, 249;
    --color-3d7699: 61, 118, 153;
    --color-bf0000: 191, 0, 0;
    --color-2b5976: 43, 89, 118;
    --color-900000: 144, 0, 0;
    --color-e3ddd3: 227, 221, 211;


    --color-fffbea: 255, 251, 234;
    --color-ff5f3a: 255, 95, 58;
    --color-ffb7a7: 255, 183, 167;
    --color-f9f9f8: 249, 249, 248;
    --color-898173: 137, 129, 115;
    --color-fe5f39: 254, 95, 57;

    /* fonts */
    --font-noto: 'Noto Sans' ,sans-serif;
    --font-notoJ: 'Noto Sans JP' ,sans-serif;
    --font-zenkaku: 'Zen Kaku Gothic Antique', sans-serif;
    --font-ysabeau: 'Ysabeau SC', sans-serif;
    --font-jost: 'Jost', sans-serif;
    --font-urban: 'Urbanist', sans-serif;

    --font-outfit: 'Outfit' ,sans-serif;


    /* transition */
    --transition-2s: 0.2s;
    --transition-4s: 0.4s;
    --transition-6s: 0.6s;
    --transition-8s: 0.8s;


}


/* -----------------------------------------
　Utility
------------------------------------------*/

.f-noto {
    font-family: var(--font-noto);
}
.f-notoJ-r {
    font-family: var(--font-notoJ);
    font-weight: 400;
}
.f-notoJ-m {
    font-family: var(--font-notoJ);
    font-weight: 500;
}
.f-notoJ-b {
    font-family: var(--font-notoJ);
    font-weight: 700;
}
.f-zenkaku-r {
    font-family: var(--font-zenkaku);
    font-weight: 400;
}
.f-zenkaku-m {
    font-family: var(--font-zenkaku);
    font-weight: 500;
}
.f-zenkaku-b {
    font-family: var(--font-zenkaku);
    font-weight: 700;
}
.f-ysabeau-r {
    font-family: var(--font-ysabeau);
    font-weight: 400;
}
.f-ysabeau-m {
    font-family: var(--font-ysabeau);
    font-weight: 500;
}
.f-ysabeau-b {
    font-family: var(--font-ysabeau);
    font-weight: 700;
}
.f-jost-r {
    font-family: var(--font-jost);
    font-weight: 400;
}
.f-jost-m {
    font-family: var(--font-jost);
    font-weight: 500;
}
.f-jost-b {
    font-family: var(--font-jost);
    font-weight: 700;
}
.f-urban-r {
    font-family: var(--font-urban);
    font-weight: 400;
}
.f-urban-m {
    font-family: var(--font-urban);
    font-weight: 500;
}
.f-urban-b {
    font-family: var(--font-urban);
    font-weight: 700;
}

.f-outfit-r {
    font-family: var(--font-outfit);
    font-weight: 400;
}
.f-outfit-m {
    font-family: var(--font-outfit);
    font-weight: 500;
}
.f-outfit-b {
    font-family: var(--font-outfit);
    font-weight: 700;
}


/* -----------------------------------------
　Constructor
------------------------------------------*/

.br-pc {
    display: block;
}
.br-sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .br-pc {
        display: none;
    }
    .br-sp {
        display: block;
    }
}

/* -----------------------------------------
　component
------------------------------------------*/

.c-container-xl {
    margin: 0 auto;
    max-width: 1100px;
}
.c-container-lg {
    margin: 0 auto;
    max-width: 900px;
}
.c-container-sm {
    margin: 0 auto;
    max-width: 768px;
}
@media screen and (max-width: 992px) {
    .c-container-lg {
        max-width: 90.729%;
    }
    .c-container-sm {
        max-width: 77.42vw
    }
}
@media screen and (max-width: 767px) {
    .c-container-xl {
        max-width: 91.734vw;
    }
    .c-container-lg {
        max-width: 96%;
    }
    .c-container-sm {
        max-width: 91.734vw;
    }
}

.c-section__padding {
    padding: 80px 0;
}
@media screen and (max-width: 992px) {
    .c-section__padding {
        padding: 8.065vw 0;
    }
}
@media screen and (max-width: 767px) {
    .c-section__padding {
        padding: 13.867vw 0;
    }
}

.c-section__title {
    position: relative;
    padding-top: 34px;
    font-size: 28px;
    line-height: 1.786;
    text-align: center;
}
.c-section__title::before {
    content: attr(data-en);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-ysabeau);
    -webkit-text-transform: capitalize;
    text-transform: capitalize;
    color: rgb(var(--color-886d30));
}
@media screen and (max-width: 992px) {
    .c-section__title {
        padding-top: 3.428vw;
        font-size: 2.823vw;
    }
    .c-section__title::before {
        font-size: 2.017vw;
    }
}
@media screen and (max-width: 767px) {
    .c-section__title {
        padding-top: 5.867vw;
        font-size: 5.334vw;
    }
    .c-section__title::before {
        font-size: 3.734vw;
    }
}


/* button */
.c-button__center a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: rgb(var(--color-ffffff));
    background: rgb(var(--color-e65d29));
    -webkit-box-shadow: 0 -4px 0 0 rgb(var(--color-c45123)) inset;
    box-shadow: 0 -4px 0 0 rgb(var(--color-c45123)) inset;
    border: 2px solid rgb(var(--color-e65d29));
    border-radius: 4px;
    transition: var(--transition-2s);
}
.c-button__center a:hover {
    background: rgba(var(--color-e65d29), 0.75);
    border: 2px solid transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.c-button__center a:active {
    color: rgb(var(--color-e65d29));
    background: rgb(var(--color-ffffff));
    border: 2px solid rgb(var(--color-e65d29));
}
.c-button__center a::after {
    content: "";
    position: absolute;
    right: 9.42%;
    width: 10px;
    height: 17px;
    background: url(/assets/img/common_recipe/c-button__center-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-button__center a:active::after {
    filter: invert(55%) sepia(67%) saturate(5545%) hue-rotate(350deg) brightness(98%) contrast(83%);
}
.c-button__prev a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 20px 16px;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: rgb(var(--color-ff5f3a));
    background: rgb(var(--color-ffffff));
    border: 2px solid rgb(var(--color-ffb7a7));
    border-radius: 50vh;
    transition: var(--transition-2s);
}
.c-button__prev a:hover {
    background: rgba(var(--color-ffb7a7), 0.24);
}
.c-button__prev a:active {
    color: rgb(var(--color-ffffff));
    background: rgb(var(--color-ffb7a7));
}
.c-button__prev a::after { 
    content: "";
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    width: 7px; 
    height: 11px;
    background: url(/assets/img/common_recipe/c-button-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-button__prev a:active::after {
    filter: brightness(0) invert(1);
} 
.c-button__next a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px 16px;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: rgb(var(--color-886d30));
    background: rgb(var(--color-ffffff));
    border: 1px solid rgb(var(--color-886d30));
    border-radius: 4px;
    transition: var(--transition-2s);
}
.c-button__next a:hover {
    background: rgba(var(--color-886d30), 0.24);
}
.c-button__next a:active {
    color: rgb(var(--color-ffffff));
    background: rgb(var(--color-886d30));
}
.c-button__next a::after {
    content: "";
    position: absolute;
    right: 9%;
    width: 7px;
    height: 11px;
    background: url(/assets/img/common_recipe/c-button__next-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-button__next a:active::after {
    filter: brightness(0) invert(1);
}
.c-button__target a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px 18px;
    width: 100%;
    height: 60px;
    font-size: 14px;
    color: rgb(var(--color-886d30));
    background: rgb(var(--color-ffffff));
    border: 1px solid rgb(var(--color-886d30));
    border-radius: 4px;
    transition: var(--transition-2s);
}
.c-button__target a:hover {
    background: rgba(var(--color-886d30), 0.24);
}
.c-button__target a:active {
    color: rgb(var(--color-ffffff));
    background: rgb(var(--color-886d30));
}
.c-button__target a::after {
    content: "";
    position: absolute;
    right: 5.93%;
    width: 15px;
    height: 15px;
    background: url(/assets/img/common_recipe/c-button__target.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-button__target a:active::after {
    filter: brightness(0) invert(1);
}
@media screen and (max-width: 992px) {
    .c-button__center a {
        height: 6.049vw;
        font-size: 1.815vw;
        border: 0.21vw solid rgb(var(--color-e65d29));
        border-radius: 0.404vw;
    }
    .c-button__center a:hover {
        border: 0.21vw solid transparent;
    }
    .c-button__center a:active {
        border: 0.21vw solid rgb(var(--color-e65d29));
    }
    .c-button__center a::after {
        right: 9.42%;
        width: 1.009vw;
        height: 1.714vw;
    }
    .c-button__prev a {
        padding-inline: 2.017vw 1.613vw;
        height: 4.033vw;
        font-size: 1.412vw;
        border: 0.101vw solid rgb(var(--color-ffb7a7));
    }
    .c-button__prev a::after {
        left: 9%;
        width: 0.706vw; 
        height: 1.109vw;
    }
    .c-button__next a {
        padding-inline: 2.017vw 1.613vw;
        height: 4.033vw;
        font-size: 1.412vw;
        border: 0.101vw solid rgb(var(--color-886d30));
        border-radius: 0.404vw;
    }
    .c-button__next a::after {
        right: 9%;
        width: 0.706vw;
        height: 1.109vw;
    }
    .c-button__target a {
        padding-inline: 2.017vw 1.815vw;
        height: 6.049vw;
        font-size: 1.412vw;
        border: 0.1vw solid rgb(var(--color-886d30));
        border-radius: 0.404vw;
    }
    .c-button__target a::after {
        right: 5.93%;
        width: 1.513vw;
        height: 1.513vw;
    }
}
@media screen and (max-width: 767px) {
    .c-button__center a {
        height: 13.867vw;
        font-size: 4.267vw;
        border: 0.534vw solid rgb(var(--color-e65d29));
        border-radius: 1.067vw;
    }
    .c-button__center a::after {
        width: 1.867vw;
        height: 2.934vw;
    }
    .c-button__prev a {
        padding-inline: 2.667vw 3.2vw;
        height: 9.6vw;
        font-size: 3.467vw;
        border: 0.267vw solid rgb(var(--color-ffb7a7));
    }
    .c-button__prev a::after {
        left: 7.229%;
        width: 1.6vw;
        height: 2.667vw;
    }
    .c-button__next a {
        padding-inline: 2.667vw 3.2vw;
        height: 10.667vw;
        font-size: 3.467vw;
        border: 0.267vw solid rgb(var(--color-886d30));
        border-radius: 0.8vw;
    }
    .c-button__next a::after {
        right: 7.229%;
        width: 1.6vw;
        height: 2.667vw;
    }
    .c-button__target a {
        padding-inline: 3.467vw 5.334vw;
        height: 9.6vw;
        font-size: 3.2vw;
        line-height: 1.517;
        border: 0.267vw solid rgb(var(--color-886d30));
        border-radius: 0.8vw;
    }
    .c-button__target a::after {
        right: 6.315%;
        width: 3.2vw;
        height: 3.2vw;
    }
}


.c-tag__new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 48px;
    height: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: rgb(var(--color-e65d29));
    border: 1px solid rgb(var(--color-e65d29));
    border-radius: 50vh;
}
@media screen and (max-width: 992px) {
    .c-tag__new {
        margin-left: 1.009vw;
        width: 4.839vw;
        height: 1.815vw;
        font-size: 1.21vw;
        border: 0.1vw solid rgb(var(--color-e65d29));
    }
}
@media screen and (max-width: 767px) {
    .c-tag__new {
        margin-left: 1.6vw;
        width: 9.067vw;
        height: 4.267vw;
        font-size: 2.667vw;
        line-height: 1.6;
    }
}


.c-pager__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.c-pager__nav .pager-num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    font-size: 16px;
}
.c-pager__nav .pager-num.pager-active {
    position: relative;
    color: rgb(var(--color-ffffff));
}
.c-pager__nav .pager-num.pager-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50vh;
    background: rgb(var(--color-ff5f3a));
    z-index: -1;
}
.c-pager__nav .pager-prev,
.c-pager__nav .pager-next {
    position: relative;
    /* display: inline-block; */
    padding: 1em;
    font-size: 16px;
}
.c-pager__nav .pager-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 12px;
    background: url(/assets/img/common_recipe/c-pager-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-pager__nav .pager-next::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 7px;
    height: 12px;
    background: url(/assets/img/common_recipe/c-pager-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
@media screen and (max-width: 992px) {
    .c-pager__nav .pager-num {
        font-size: 1.613vw;
    }
    .c-pager__nav .pager-num.pager-active::before {
        width: 4.033vw;
        height: 4.033vw;
    }
    .c-pager__nav .pager-prev,
    .c-pager__nav .pager-next {
        font-size: 1.613vw;
    }
    .c-pager__nav .pager-prev::before {
        width: 0.706vw;
        height: 1.21vw
    }
    .c-pager__nav .pager-next::after {
        width: 0.706vw;
        height: 1.21vw;
    }
}
@media screen and (max-width: 767px) {
    .c-pager__nav .pager-num {
        font-size: 3.2vw;
    }
    .c-pager__nav .pager-num.pager-active::before {
        width: 7.467vw;
        height: 7.467vw;
    }
    .c-pager__nav .pager-prev,
    .c-pager__nav .pager-next {
        font-size: 3.2vw;
    }
    .c-pager__nav .pager-prev::before {
        width: 1.334vw;
        height: 2.134vw;
    }
    .c-pager__nav .pager-next::after {
        width: 1.334vw;
        height: 2.134vw;
    }
}


.c-pager__origin {
    position: relative;
    display: flex;
    margin-top: 72px;
}
.c-pager__origin a {
    display: block;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.08em;
}
.c-pager__origin .p-pager__origin-prev {
    margin-inline: 0 auto;
    padding-left: 25px;
}
.c-pager__origin .p-pager__origin-next {
    margin-inline: auto 0;
    padding-right: 25px;
}
.c-pager__origin .p-pager__origin-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    background: url(/assets//img/common/c-pager__prev-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.c-pager__origin .p-pager__origin-next::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    background: url(/assets//img/common/c-pager__next-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
@media screen and (max-width: 992px) {
    .c-pager__origin {
        margin-top: 7.259vw;
    }
    .c-pager__origin a {
        font-size: 1.613vw;
    }
    .c-pager__origin .p-pager__origin-prev {
        padding-left: 2.521vw;
    }
    .c-pager__origin .p-pager__origin-next {
        padding-right: 2.521vw;
    }
    .c-pager__origin .p-pager__origin-prev::before {
        width: 0.706vw;
        height: 1.21vw;
    }
    .c-pager__origin .p-pager__origin-next::after {
        width: 0.706vw;
        height: 1.21vw;
    }
}
@media screen and (max-width: 767px) {
    .c-pager__origin {
        margin-top: 14.934vw;
    }
    .c-pager__origin a {
        font-size: 3.2vw;
    }
    .c-pager__origin .p-pager__origin-prev {
        padding-left: 4vw;
    }
    .c-pager__origin .p-pager__origin-next {
        padding-right: 4vw;
    }
    .c-pager__origin .p-pager__origin-prev::before {
        width: 1.334vw;
        height: 1.867vw;
    }
    .c-pager__origin .p-pager__origin-next::after {
        width: 1.334vw;
        height: 1.867vw;
    }
}


.c-heading {
    margin-bottom: 54px;
    font-size: 24px;
    line-height: 1.084;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .c-heading {
        margin-bottom: 5.334vw;
        font-size: 4.534vw;
    }
}


.ws-nw {
    white-space: nowrap;
}


/* header */
.l-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px;
    background: rgb(var(--color-ffffff));
    transform: translateZ(0);
    z-index: 999;
}
.l-header a {
    display: block;
}
.l-header .p-header__logo {
    width: 168px;
}
.l-header .p-header__nav .list {
    display: flex;
    align-items: center;
    gap: 0 18px;
}
@media screen and (max-width: 992px) {

}
@media screen and (max-width: 767px) {
    .l-header {
        padding: 18px 8px 18px 16px;
    }
    .l-header .p-header__logo {
        width: 110px;
    }
    .l-header .p-header__nav .list {
        gap: 0 2.134vw;
    }
    .l-header .p-header__nav .list .oasis {
        width: 63px;
    }
    .l-header .p-header__nav .list .izumiya {
        width: 59px;
    }
    .l-header .p-header__nav .list .qanat {
        width: 84px;
    }
    #pagetop.fixed {
        height: 100%;
        overflow: hidden;
    }
}



/* footer */
.l-footer {
    padding-block: 20px 18px;
}
.l-footer .p-footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.l-footer .p-footer-content .group {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.l-footer .p-footer-content .parent {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px 0;
}
.l-footer .p-footer-content .parent .copy {
    font-size: 12px;
    line-height: 1.417;
}
.p-footer-pagetop  {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    z-index: 800;
}
@media screen and (min-width: 768px) and (max-width: 1164px) {
    .l-footer {
        padding: 20px 32px 18px;
    }
}
@media screen and (max-width: 992px) {
    .p-footer-pagetop  {
        bottom: 2.017vw;
        right: 2.017vw;
    }
}
@media screen and (max-width: 767px) {
    .l-footer {
        /* padding-block: 6.4vw 3.734vw; */
        padding-block: 24px 14px;
    }
    .l-footer .p-footer-content {
        flex-direction: column;
        align-items: normal;
        gap: 20px 0;
    }
    .l-footer .p-footer-content .group {
        gap: 0 16px;
    }
    .l-footer .p-footer-content .group .oasis {
        width: 87px;
    }
    .l-footer .p-footer-content .group .izumiya {
        width: 82px;
    }
    .l-footer .p-footer-content .group .qanat {
        width: 117px;
    }
    .l-footer .p-footer-content .parent {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px 0;
    }
    .l-footer .p-footer-content .parent .h2o {
        width: 166px;
    }
    .l-footer .p-footer-content .parent .copy {
        font-size: 10px;
    }
    .p-footer-pagetop  {
        bottom: 10.667vw;
        right: 2.134vw;
        width: 10.667vw;
    }
}


.l-main {
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}
@media screen and (max-width: 767px) {


}    

.l-bread {
    margin-top: 36px;
}
.l-bread .p-bread__list {
    display: flex;
    align-items: center;
    margin-left: -10px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.l-bread .p-bread__list::-webkit-scrollbar{
    display:none;
}
.l-bread .p-bread__list li {
    position: relative;
    display: flex;
    padding-inline: 10px;
    white-space: nowrap;
}
.l-bread .p-bread__list li:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 7px;
    background: url(/assets/img/common/c-bread-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.l-bread .p-bread__list li:last-of-type span {
    max-width: 640px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.l-bread .p-bread__list li a {
    font-size: 13px;
}
.l-bread .p-bread__list li span {
    font-size: 13px;
}
@media screen and (max-width: 992px) {
    .l-bread {
        margin-top: 3.63vw;
    }
    .l-bread .p-bread__list {
        margin-left: -1.009vw;
    }
    .l-bread .p-bread__list li {
        padding-inline: 1.009vw;
    }
    .l-bread .p-bread__list li:not(:first-of-type)::before {
        width: 0.505vw;
        height: 0.706vw;
    }
    .l-bread .p-bread__list li a {
        font-size: 1.31vw;
    }
    .l-bread .p-bread__list li span {
        font-size: 1.31vw;
    }
}
@media screen and (max-width: 767px) {
    .l-bread {
        margin-top: 4.267vw;
    }
    .l-bread .p-bread__list {
        margin: 0 auto;
        width: 91.734vw;
    }
    .l-bread .p-bread__list li {
        padding-inline: 3.2vw;
    }
    .l-bread .p-bread__list li:first-of-type {
        padding-inline: 0 3.2vw;
    }
    .l-bread .p-bread__list li:not(:first-of-type)::before {
        width: 1.334vw;
        height: 1.867vw;
    }
    .l-bread .p-bread__list li a {
        font-size: 2.934vw;
    }
    .l-bread .p-bread__list li span {
        font-size: 2.934vw;
    }
}


.u-active-page {
    color: rgb(var(--color-e65d29));
}

.remodal {
    max-width: none;
}
.remodal-overlay {
    background: rgba(var(--color-898173), 0.8);
}
.remodal .modal__inner {
    margin: auto;
    width: 900px;
    padding: 48px 48px 80px;
    border: 2px solid rgb(var(--color-fe5f39));
    border-radius: 20px;
    background: rgb(var(--color-ffffff));
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: none;
}
.remodal .modal__inner::-webkit-scrollbar {
    display:none;
}
.remodal .modal__inner .btn {
    position: relative;
    margin-left: auto;
    transform: rotate(45deg);
    width: 35px;
    aspect-ratio: 1/1;
    cursor: pointer;
}
.remodal .modal__visual .listname {
    position: relative;
    padding-left: 56px;
    font-size: 18px;
    line-height: 2.643;
    color: rgb(var(--color-ff5f3a));
    text-align: left;
}
.remodal .modal__visual .listname:not(:first-child) {
    margin-top: 28px;
}
.remodal .modal__visual .listname.cook::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 44px;
    aspect-ratio: 44 / 28;
    background: url(/assets/img/recipe/recipe-listname-cook.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.remodal .modal__visual .listname.scene::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 44px;
    aspect-ratio: 44 / 28;
    background: url(/assets/img/recipe/recipe-listname-scene.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.remodal .modal__visual .listname.ingredients::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 44px;
    aspect-ratio: 44 / 28;
    background: url(/assets/img/recipe/recipe-listname-ingredients.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.remodal .modal__visual .listname.scene::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 44px;
    aspect-ratio: 44 / 28;
    background: url(/assets/img/recipe/recipe-listname-scene.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.remodal .modal__visual .list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.remodal .modal__visual .list li {
    width: 24.25%;
}
.remodal .modal__visual .list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    font-size: 14px;
    line-height: 2.643;
    border: 1px solid rgb(var(--color-ffb7a7));
    border-radius: 50vh;
    background: rgb(var(--color-ffffff));
}
@media screen and (max-width: 992px) {
    .remodal .modal__inner {
        max-width: none;
        width: 90.726vw;
        padding: 4.839vw 4.839vw 8.065vw;
        border: 0.202vw solid rgb(var(--color-fe5f39));
        border-radius: 2.017vw;
    }
    .remodal .modal__inner .btn {
        width: 3.529vw;
    }
    .remodal .modal__visual .listname {
        padding-left: 5.646vw;
        font-size: 1.815vw;
    }
    .remodal .modal__visual .listname:not(:first-child) {
        margin-top: 2.823vw;
    }
    .remodal .modal__visual .listname.cook::before {
        width: 4.435vw;
    }
    .remodal .modal__visual .listname.scene::before {
        width: 4.435vw;
    }
    .remodal .modal__visual .listname.ingredients::before {
        width: 4.435vw;
    }
    .remodal .modal__visual .list {
        gap: 0.807vw;
    }
    .remodal .modal__visual .list li {
        width: 24.25%;
    }
    .remodal .modal__visual .list li a {
        height: 3.73vw;
        font-size: 1.412vw;
        border: 0.267vw solid rgb(var(--color-ffb7a7));
    }
}
@media screen and (max-width: 767px) {
    .remodal .modal__inner {
        width: 96vw;
        padding: 6.934vw 4.8vw 11.734vw;
        border: 1px solid rgb(var(--color-fe5f39));
        border-radius: 3.2vw;
    }
    .remodal .modal__inner .btn {
        width: 24px;
    }
    .remodal .modal__visual .listname {
        padding-left: 9.067vw;
        font-size: 4vw;
    }
    .remodal .modal__visual .listname:not(:first-child) {
        margin-top: 8vw;
    }
    .remodal .modal__visual .listname.cook::before {
        width: 7.467vw;
    }
    .remodal .modal__visual .listname.scene::before {
        width: 7.467vw;
    }
    .remodal .modal__visual .listname.ingredients::before {
        width: 7.467vw;
    }
    .remodal .modal__visual .list {
        gap: 2.134vw 1.6vw;
    }
    .remodal .modal__visual .list li {
        width: 49.069%;
    }
    .remodal .modal__visual .list li a {
        height: 9.334vw;
        font-size: 3.2vw;
        line-height: 2.917;
        border: 1px solid rgb(var(--color-ffb7a7));
    }
}
