@charset "utf-8";

/* 色の変数　　color: var(--blue); */
:root {
    --white: #fff;
    --white02: rgba(255, 255, 255, 0.5);
    --black: #0a0d0d;
    --gray01: #707070;
    --red01: #C72D23;
    --red02: #581A15;
    --red03: #C60000;


    --gra-red01: linear-gradient(35deg, var(--red01) 59%, var(--red02) 100%);

    /* 書式 */
    --notoSans: "Noto Sans JP", sans-serif;
    --notoSerif: "Noto Serif JP", serif;

    /* 文字サイズ */
    --font15: 1.5rem;
    --font18: 1.8rem;
    --font20: 2.0rem;
    --font30: 3.0rem;
    --font37: 3.7rem;


    /* ウェイト */
    --weight400: 400;
    --weight500: 500;
    --weight600: 600;
    --weight700: 700;
    --weight800: 800;

    /* 行間 */
    --lineHight143: 1.43;
    --lineHight150: 1.50;
    --lineHight170: 1.70;
    --lineHight20: 2.0;

    /* 文字間 */
    --fontSpace300: 0.3em;

    /* トランジションの変数　 */
    --transitionBase01: all 0.3s ease-in-out;
    --transitionBase02: all 0.5s ease-in-out;

    /* 角丸の変数　 */
    --borderRadius01: 500px;
    --borderRadius10: 10px;
    --borderRadius20: 20px;
    --borderRadius30: 30px;
    --borderRadiusCircle: 50%;

    --opacity07: .7;


    --maxWidth880: min(100%, 880px);
    --maxWidth1000: min(100%, 1000px);




}




@media screen and (max-width: 1024px) {
    :root {
        --font15: 1.5rem;
        --font18: 1.7rem;
        --font20: 1.9rem;
        --font30: 2.7rem;
        --font37: 3rem;
    }
}


@media screen and (max-width: 768px) {
    :root {
        --font15: 1.4rem;
        --font18: 1.6rem;
        --font20: 1.8rem;
        --font30: 2.5rem;
        --font37: 2.7rem;



        --opacity07: 1;
    }


}

@media screen and (max-width: 480px) {
    :root {
        --font15: 1.3rem;
        --font18: 1.5rem;
        --font20: 1.7rem;
        --font30: 2.2rem;
        --font37: 2.5rem;

        --borderRadius20: 10px;
        --borderRadius30: 15px;
    }
}

@media screen and (max-width: 375px) {
    :root {
        --font30: 2rem;

    }
}

/*******************************************
common
*******************************************/

.limitedTime-lp {
    position: relative;
    width: 100%;
    font-family: var(--notoSans);

    .inner01 {
        width: min(100%, 1080px);
        margin: 0 auto;
    }

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

    p {
        margin: 0;
    }

    .txt {
        text-align: justify;
        font-size: var(--font18);
        margin: 0 0 1.5em 0;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .txt-end {
        text-align: end;
    }

}

.limitedTime-lp__container {
    padding: 40px 0;
}

.limitedTime-lp__ttl {
    font-size: var(--font37);
    color: var(--black);
    font-weight: var(--weight700);
    text-align: center;
    margin-bottom: 0.8em;
}


.marker {
    background: linear-gradient(transparent 80%, var(--yellow01) 80%);
}

.color-red01 {
    color: var(--red01);
}

.btn-outer {
    width: min(100%, 280px);
    aspect-ratio: 242 / 71;
    margin: 0 auto;
}

.btn01 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: var(--font30);
    color: var(--white);
    background-color: var(--red01);
    border: 2px solid var(--red01);
    transition: var(--transitionBase01);
    border-radius: var(--borderRadius10);
    cursor: pointer;
    text-decoration: none;
    font-weight: var(--weight700);

    &:hover {
        background-color: var(--white);
        color: var(--red01);
    }
}


.push {
    display: inline-block;
}

.block480 {
    display: none;
}




.aco-click {
    position: relative;
    cursor: pointer;
    transition: var(--transitionBase01);

    &:hover {
        opacity: var(--opacity07);
    }

    &::before,
    &::after {
        position: absolute;
        content: "";
        width: max(0.58em, 10px);
        height: 2px;
        background-color: var(--gray01);
        border-radius: var(--borderRadius01);
        top: 50%;
        transition: var(--transitionBase02);
    }

    &::before {
        transform-origin: left bottom;
        right: 1.17em;
        transform: translateY(-200%) rotate(50deg);
    }

    &::after {
        transform-origin: right bottom;
        right: 1em;
        transform: translateY(-200%) rotate(-50deg);
    }
}

.aco-box {
    max-height: 0;
    overflow: hidden;
    transition: var(--transitionBase02);
}

.open {
    .aco-click {
        &::before {
            transform-origin: left top;
            transform: translateY(200%) rotate(-50deg);
        }

        &::after {
            transform-origin: right top;
            transform: translateY(200%) rotate(50deg);
        }
    }
}

.list01 {
    li {
        position: relative;
        padding-left: 1em;

        &::before {
            position: absolute;
            content: "・";
            font-size: 1em;
            top: 0;
            left: 0;
        }
    }
}

@media screen and (max-width: 1120px) {
    .limitedTime-lp {
        .inner01 {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

    }
}

@media screen and (max-width: 1024px) {
    .push1024 {
        display: inline-block;
    }
}

@media screen and (max-width: 768px) {
    .btn01 {

        &:hover {
            background-color: var(--red01);
            color: var(--white);
        }
    }

    .btn-outer {
        aspect-ratio: 242/50;
    }
}

@media screen and (max-width: 480px) {
    .block480 {
        display: block;
    }
}




/*******************************************
追随ボタン
*******************************************/

.btn-outer-fixed {
    position: fixed;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: var(--transitionBase02);
    opacity: 0;
    visibility: hidden;
    width: min(90%, 412px);
    aspect-ratio: 412/93;

    &.show {
        opacity: 1;
        visibility: visible;
    }
}




@media screen and (max-width: 770px) {
    .btn-outer-fixed {
        bottom: calc(56px + 2%);
    }
}


@media screen and (max-width: 480px) {

    .btn-outer-fixed {
        width: min(90%, 300px);
    }


}




/*******************************************
mv
*******************************************/
.symphony__mv {
    width: 100%;

}


/*******************************************
footer
*******************************************/

.footer__copyright {
    padding-bottom: 170px;
}

@media screen and (max-width: 770px) {

    .footer__copyright {
        padding-bottom: 220px;
    }

}


@media screen and (max-width: 480px) {


    .footer__copyright {
        padding-bottom: 170px;
    }

}





/* 個別
-------------------------------------------- */
/*******************************************
tasting 2025.11.28（佐久間）
*******************************************/
.tasting-top {
    .txt {
        &:last-child {
            margin-bottom: 0;
        }
    }
}

.tasting-top__txtBox {
    width: min(100%, 800px);
    margin: 0 auto;
}

.tastingFlex {
    display: flex;
    margin: 40px auto 30px;
    width: var(--maxWidth880);

    .img {
        width: min(38%, 340px);

        img {
            object-fit: cover;
            height: 100%;
        }
    }
}

.tastingFlex__txtBox {
    flex: 1;
    border: 10px solid var(--red03);
    padding: 25px 20px 10px;
    margin-left: 10px;

    .color-red01 {
        font-size: var(--font20);
        font-weight: var(--weight700);
        margin-top: 0.5em;
    }
}

.tastingFlex__detail {
    font-size: var(--font18);

    div {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 0.5em;

        dt {
            width: 5em;
        }

        dd {
            flex: 1;
            line-height: 1.3;

            .small {
                font-size: 0.8em;
            }
        }
    }
}

.tastingAccess {
    width: var(--maxWidth880);
    margin: 0 auto 30px;

    .aco-click {

        &::before,
        &::after {
            height: 1px;
        }

        &::before {
            right: 1.2em;
        }
    }
}

.tastingAccess__txt {
    width: min(100%, 11.5em);
}

.tastingChef__ttl {
    font-size: var(--font30);
    text-align: center;
    color: var(--white);
    font-weight: var(--weight700);
    background-image: var(--gra-red01);
    padding: 0.7em 5px;
}

.tastingChefFlex {
    display: flex;
    justify-content: flex-start;
    width: var(--maxWidth1000);
    margin: 50px auto;

    .img {
        width: min(41%, 405px);
    }
}

.tastingChefFlex__txtBox {
    flex: 1;
    font-size: var(--font18);
    margin-left: 1.6em;

    .txt {
        line-height: 1.666;
    }
}

.tastingChefFlex__name {
    margin-bottom: 1.1em;

    .name {
        display: block;
        font-size: var(--font30);
        font-weight: var(--weight700);
        letter-spacing: var(--fontSpace300);
    }
}


@media screen and (max-width: 770px) {
    .tastingFlex {
        flex-direction: column;
        align-items: center;
        margin: max(6%, 25px) auto max(4%, 15px);

        .img {
            width: max(40%, 150px);
        }
    }

    .tastingFlex__txtBox {
        flex: initial;
        padding: 20px max(2.5%, 5px) 10px;
        margin-left: 0;
        margin-top: max(5%, 10px);
        width: min(100%, 500px);
    }

    .tastingChefFlex {
        flex-direction: column;
        align-items: center;
        margin: max(7%, 20px) auto max(7%, 40px);

        .img {
            width: max(50%, 200px);
        }
    }

    .tastingChefFlex__txtBox {
        flex: initial;
        margin-top: 1em;
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .tastingFlex__txtBox {
        border: 5px solid var(--red03);
    }

    .tastingAccess__txt {
        font-size: 15px;
    }
}