@charset "UTF-8";



html {
    scroll-behavior: smooth;
}


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



body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: #008CD6;
}



p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1em;
    line-height: 1.7;
    font-weight: 500;
    color: #3E3A39;
}

h3,
h4,
h5 {
    font-family: "Zen Maru Gothic", sans-serif;
}

.sec {
    width: 100%;
    margin: 0 auto;
    padding: 3em 0;
    font-size: min(3.75vw , 16px);
}

.sec-in {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
}

img.deco {
    position: absolute;
}


.top-btn {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 100vw;
    height: 100%;
    max-width: 700px;
    pointer-events: none;
}

.top-btn-in {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: clamp(40px , 12.5vw , 60px);
    height: auto;
    aspect-ratio: 1 / 1;
    transform: translateY(0);
    transition: transform .2s ease;
}
.top-btn-in:hover {
    transform: translateY(-1em);
}

.top-btn-in img {
    width: 100%;
    height: auto;
}

.top-btn-in a {
    position: absolute;
    pointer-events: all;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* background-color: #ccc; */
}


.instagram-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    transform: translateY(20%);
    margin-left: .25em;
    background: url(../images/instagram.webp) no-repeat center/ contain;
}



/* ---------------------------------- main ---------------------------------- */



main {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 100vh;
    margin: 0 auto;
    font-size: min(3.75vw , 16px);
}

 main::after {
    content: '';
    position: fixed;
    max-width: 700px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    height: 100vh;
    
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, #8FCEC0 0%, #008CD6 40%, #B4A2CA 70%, #D59CB2 80%, #E898A3 90%, #F0979E 100%);
        
    background-size: 2em 2em, 2em 2em, auto;
}


/* ---------------------------------- main ---------------------------------- */


header {
    width: 100%;
    font-size: min(3.75vw , 16px);

}

.header-in {
    background-color: #727272;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: .5em 0;
}
.header-in p {
    font-size: .87em;
    color: #fff;

}


.header-menu {
    display: none;
}


    
/* メニュー */

    .header-menu {
        position: fixed;
        z-index: 100;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    .header-menu.has-scroll {
        display: block;
    }

    #nav {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(130%);
        width: 80%;
        height: 100%;
        transition: .5s ease all;
        pointer-events: all;
        visibility: hidden;
        background-color: #fff;
    }

  
    #nav.active {
        transform: translateX(25%);
        visibility: visible;
    }

    #nav .title-logo {
        width: 100%;
    }
    #nav .title-logo img {
        width: 100%;
    }

    .nav-wrap {
        display: flex;
        align-items: center;
        overflow-y: auto;
        height: calc(100vh - 100px);
    }

    .nav-wrap.has-scroll {
        align-items: flex-start;

    }

    .nav-in {
        width: 90%;
        max-width: 500px;
        margin: 0 auto; 
    }


    .hamburger {
        pointer-events: all;
        position: absolute;
        top: .5em;
        right: .5em;
        width: 16vw;
        max-width: 70px;
        height: auto;
        aspect-ratio: 1 / 1;
        background-color: #008CD6;
        border-radius: 50vw;
        transition: background-color .2s ease;
    }
    .hamburger:hover {
        background-color: #fff;
    }

    .hamburger-in {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50% , -50%);
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: .2em;
        background-color: #fff; 
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
    }
    .hamburger:hover span {
        background-color: #008CD6;
    }

    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .hamburger span:nth-child(3) { top: 100%; transform: translateY(-100%); }



    .hamburger.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    #nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #nav ul {
        padding: 1.5em;

    }

    #nav .flex-sns {
        width: 45%;
        display: flex;
        flex-direction: column;
        gap: .5em;
        max-width: 250px;
        margin: 0 auto;
    }

    #nav li {
        position: relative;
        font-family: "Zen Maru Gothic", sans-serif;
        color: #008CD6;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        font-size: 1em;
        font-size: min(3.75vw , 20px);
        padding-bottom: .5em;
        margin-bottom: .5em;
        padding-left: 1em;
        border-bottom: 1px dashed #ccc;
        opacity: 1;
        transition: opacity .2s ease;
    }
    #nav li:hover {
        opacity: .5;
    }

    #nav li a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #nav li::before {
        content: '';
        display: inline-block;
        transform: translateY(20%);
        width: 1.5em;
        height: auto;
        margin-right: .5em;
        aspect-ratio: 1 / 1;
        background: url(../images/sec-4-icon.webp) no-repeat center / contain;
    }

    #menu-bg {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background-color: #008CD6;
        opacity: .5;
        visibility: hidden;
        pointer-events: all;

    }
    #menu-bg.active {
        visibility: visible;
    }

    .sns-item1 {
        height: 15vw;
        max-height: 100px;
    }



/* -------------------------------------------------------------------- TOP ---------------------------------- */




/* ---------------------------------- fv ---------------------------------- */

#fv {
    position: relative;
    overflow: hidden;
    /* height: 100%;
    width: auto;
    min-height: 900px; */
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 2;
    min-height: 900px;
    padding: 0;
    padding-bottom: 8em;
}

#fv .sec-in {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    max-width: 500px;
} 

/* 背景三角 */

.fv-wrap {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.triangle {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-10% , -15%);
    z-index: 1;
    width: 170%;
    max-width: 950px;
    aspect-ratio: 0.866 / 1;
}
.triangle-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: url(../images/fv-bg.webp) no-repeat center / contain;
    filter: drop-shadow(0px 4px 10px rgba(35, 36, 76, 0.25));
}

.triangle .deco-1 {
    top: 0;
    right: 0;
    transform: translate(-75%, 38%);
    width: 30%;
    height: auto;
}
.triangle .deco-2 {
    bottom: 0;
    left: 0;
    transform: translate(20%, 10%);
    width: 30%;
    height: auto;
}
.triangle .deco-3 {
    z-index: 2;
    top: 24%;
    right: 32%;
    transform: translateY(10%) rotate(0);
    width: 5%;
    height: auto;
    opacity: 0;
    transition: .5s .5s ease all;
}
.load .triangle .deco-3 {
    opacity: 1;
    transform: translateY(0) rotate(10deg);
}

.triangle .deco-4 {
    z-index: 2;
    top: 27%;
    right: 37%;
    transform: translateY(10%) rotate(0);
    width: 7%;
    height: auto;
    opacity: 0;
    transition: .5s .5s  ease all;
}
.load .triangle .deco-4 {
    opacity: 1;
    transform: translateY(10%) rotate(-10deg);
}

.triangle .deco-5 {
    z-index: 2;
    top: 20%;
    right: 55%;
    transform: translateX(10%) rotate(10deg);
    width: 8%;
    height: auto;
    opacity: 0;
    transition: .5s .5s ease all;
}
.load .triangle .deco-5 {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.fv-title {
    width: 90%;
    margin: 0 auto;
    padding-top: 30%;
}

.fv-title p.t-1 {
    position: relative;
    display: inline-block;
    transform: translate(.5em ,1em) rotate(0);
    padding: 0 1.5em;
    font-size: .87em;
    font-size: min(3.75vw , 14px);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 1em;
    opacity: 0;
    transition: .5s .5s ease all;
}
.load .fv-title p.t-1 {
    opacity: 1;
    transform: translate(0 ,0) rotate(-4deg);
}

.t-1 span {
    display: inline-block;
}


.fv-title p.t-1::before,
.fv-title p.t-1::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0 , -50%);
    width: auto;
    height: 3em;
    aspect-ratio: 1.49 / 10;
    background: url(../images/fukidashi_1.webp) no-repeat center / contain;
}

.fv-title p.t-1::before {
    left: 0;
    transform: translate(0 , -50%) rotate(-30deg);
}
.fv-title p.t-1::after {
    right: 0;
    transform: translate(0 , -50%) rotate(30deg);
}


.fv-title p.t-2 {
    text-align: center;
    margin-bottom: .25em;
    margin-bottom: .5em;
    font-size: 1.25em;
    font-weight: 600;
    opacity: 0;
    transition: .5s .5s ease all;
}
.load .fv-title p.t-2 {
    opacity: 1;
}


/* タイトルロゴ */

.fv-title h2 {
    width: 100%;
}

.fv-title h2 img {
    width: 100%;
    height: auto;
}

.title-logo {
    position: relative;
    width: 90%;
    margin: 0 auto;
    transform: scale(.8);
    will-change: transform, opacity;
}

.title-logo img {
    width: 100%;
}

.load .title-logo {
    animation: bound_pop 0.6s ease-out forwards;
}
@keyframes bound_pop {
    0% {
        opacity: 0;
        transform: scale(0.8); 
    }
    60% {
        opacity: 1;
        transform: scale(1.1); 
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);   
    }
}



.title-logo .deco-1 {
    top: 20%;
    left: 0; 
    transform: translate(-62% , 0);
    width: 12%;
    animation: glitter 2s ease-in-out infinite;
}
@keyframes glitter {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-62% , 0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-62% , 0) scale(1.2);
    }
}

.title-logo .deco-2 {
    top: 0;
    right: 0;
    transform: translate(55%, -105%) rotate(-10deg);
    width: 13%;
    opacity: 0;
    transition: .3s .9s ease all;
}
.load .title-logo .deco-2 {
    opacity: 1;
    transform: translate(55%, -105%) rotate(0);
}

.title-logo .deco-3 {
    bottom: 0;
    right: -10%;
    transform: translate(0%, -40%) rotate(-10deg);
    width: 8%;
    animation: cradle 3s ease-in-out infinite;
}
@keyframes cradle {
    0%, 100% {
        transform: translate(0%, -40%) rotate(-10deg);
    }
    50% {
        transform: translate(0%, -40%) rotate(10deg);
    }
}

.title-logo .deco-4 {
    top: 0;
    left: -9%;
    transform: translate(0%, -75%) rotate(10deg);
    width: 8%;
    opacity: 0 ;
    transition: .3s .7s ease all;
}
.load .title-logo .deco-4  {
    opacity: 1;
    transform: translate(0%, -75%) rotate(0);

}


.title-logo .deco-5 {
    top: -30%;
    left: 0%;
    width: 8%;
    opacity: 0;
    transform: rotate(-40deg);
    rotate: -10deg;
    transition: .3s .5s ease all;
}
.load .title-logo .deco-5 {
    opacity: 1;
    transform: rotate(0);
}


/* キービジュアル */
.kv {
    position: relative;
    width: 95%;
    margin: 0 auto;
    aspect-ratio: 6 / 10;
}

.kv-img {
    position: absolute;
    width: 100%;
}

.kv-img-in {
    position: relative;
    width: 100%;
    height: 100%;
}

.kv-img img {
    width: 100%;
}

.kv-1 {
    top: 8%;
    width: 100%;
    aspect-ratio: 10 / 7;
    opacity: 0;
    transition: .5s .8s ease all;
}
.load .kv-1 {
    opacity: 1;
}


.kv-1 .deco-2 {
    top: -18%;
    left: 8%;
    width: 10.5%;
    transform: rotate(10deg);
    animation: cradle-kv1 3s ease-in-out infinite;
}
@keyframes cradle-kv1 {
    0%, 100% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
}


.kv-1 .deco-3 {
    top: -12%;
    left: 32%;
    width: 10%;
    transform: rotate(-10deg);
    animation: cradle-kv2 3s ease-in-out infinite;
}
@keyframes cradle-kv2 {
    0%, 100% {
    transform: rotate(-10deg);
    }
    50% {
    transform: rotate(10deg);
    }
}

.kv-1 .deco-4{
    top: -18%;
    left: 50%;
    width: 12.5%;
    transform: rotate(8deg);
    animation: cradle-kv3 3s ease-in-out infinite;

}
@keyframes cradle-kv3 {
    0%, 100% {
    transform: rotate(8deg);
    }
    50% {
    transform: rotate(-8deg);
    }
}

.kv-1 .deco-5 {
    top: -17%;
    right: 4%;
    width: 14%;
    transform: rotate(-11deg) scale(-1, 1);
}

.kv-1 .deco-6{
    bottom: 20%;
    left: 0;
    width: 18%;
}

.kv-1 .deco-7{
    bottom: 0%;
    left: 40%;
    width: 20%;
    transform: rotate(8deg);
}

.kv-1 .deco-8{
    bottom: -10%;
    left: 30%;
    width: 12%;
    z-index: 2;
    transform: rotate(-10deg);
}

.kv-2 {
    z-index: 2;
    top: 42%;
    right: 0;
    width: 40%;
    transform: rotate(5deg);
    aspect-ratio: 5 / 4;
    opacity: 0;
    transition: .5s 1s ease all;
}
.load .kv-2 {
    opacity: 1;
}

.kv-2 img {
    transform: rotate(5deg);
    animation: cradle-kv4 2.5s ease-in-out infinite;
}
@keyframes cradle-kv4 {
    0%, 100% {
    transform: rotate(5deg);
    }
    50% {
    transform: rotate(-5deg);
    }
}



.kv-3 {
    bottom: 8%;
    right: 0;
    width: 85%;
    aspect-ratio: 10 / 7;
    opacity: 0;
    transition: .5s 1.1s ease all;
}
.load .kv-3 {
    opacity: 1;
}

.kv-3 .deco-1 {
    width: 100%;
    transform: rotate(10deg);
}
.kv-3 .deco-2 {
    left: -10%;
    top: 10%;
    width: 35%;
    transform: rotate(-20deg);
    animation: cradle-kv5 1.5s ease-in-out infinite;
}
@keyframes cradle-kv5 {
    0%, 100% {
    transform: rotate(-20deg);
    }
    50% {
    transform: rotate(-10deg);
    }
}

.kv-3 .deco-3 {
    right: 15%;
    bottom: 5%;
    width: 22%;
    transform: rotate(-20deg);
}
.kv-3 .deco-4 {
    right: 30%;
    bottom: -30%;
    width: 25%;
    transform: rotate(-20deg);
}


.kv-4 {
    bottom: 0;
    left: 0;
    transform: translate(-10% , 45%);
    width: 50%;
    opacity: 0;
    transition: .5s 1.2s ease all;
}
.load .kv-4 {
    opacity: 1;
}




/* ---------------------------------- sns ---------------------------------- */


#sns  {
    padding: 3em 0 6em 0;
}

#sns .sns-wrap {
    position: relative;
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    transform: scale(1.1);
    transition: .5s ease all;
}
#sns .sns-wrap.active {
    opacity: 1;
    transform: scale(1);
}



#sns .sns-wrap a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#sns .sns-wrap img.sns-img {
    width: 100%;
    transform: scale(1);
    transition: transform .2s ease-in-out;
}
#sns .sns-wrap:hover img.sns-img {
    transform: scale(1.1);
}

#sns .deco-1 {
    bottom: 0;
    right: 0;
    transform: translate(20% , 20%);
    width: 25%;
}



/* ---------------------------------- 企画説明 ---------------------------------- */



#sec-1 {
    position: relative;
    padding: 7em 0 6em 0;
    margin-bottom: 6em;
    width: 100%;
    height: auto;
    /* overflow: hidden; */
}


.sec-wrap {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* background-color: #ccc; */
}

.sec-1-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 180vw;
    height: 100%;
    background: url(../images/content_bg.webp) no-repeat center top / contain;
}

#sec-1 .sec-in {
    position: relative;
    z-index: 1;
}

.sec-1-title {
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 3;
    margin-bottom: 1.5em;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
.sec-1-title.active {
    opacity: 1;
    transform: translateY(0);
}

.sec-1-title img {
    width: 100%;
    height: auto;
}


#sec-1 .text-box p {
    margin-bottom: 1em;
    line-height: 2;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
#sec-1 .text-box p.active {
    opacity: 1;
    transform: translateY(0);
}

#sec-1 .text-box p.border,
#sec-1 .text-box p .border {
    background: linear-gradient(transparent 60%, #FFFF99 60%);
    display: inline;
}

#sec-1 .text-box p:last-child {
    margin-bottom: 0;
}

#sec-1 .deco-1 {
    top: -15%;
    left: 5%;
    transform: rotate(0) scale(1.1);
    width: 20%;
    opacity: 0;
    transition: .5s ease all;
}
#sec-1 .deco-1.active {
    opacity: 1;
    transform: rotate(-10deg) scale(1);
}


#sec-1 .deco-2 {
    bottom: -23%;
    left: 30%;
    width: 25%;
    transform: scale(1.1);
    opacity: 0;
    transition: .2s ease all;
}
#sec-1 .deco-2.active {
    opacity: 1;
    transform: scale(1);
}

#sec-1 .deco-3 {
    bottom: -45%;
    right: 0%;
    opacity: .5;
    transform: rotate(10deg);
    width: 40%;
}

#sec-1 .deco-4 {
    bottom: -18%;
    left: -2%;
    width: 30%;
    transform: scale(1.1);
    opacity: 0;
    transition: .2s ease all;
}
#sec-1 .deco-4.active {
    opacity: 1;
    transform: scale(1);
}

/* ---------------------------------- 要素 ---------------------------------- */


#sec-2 {
    position: relative;
    padding: 6em 0%;
}


#sec-2 .sec-in {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sec-2 .wrap-in {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5.3;
    text-align: center;
}


#sec-2 .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    background-color: #fff;
    border-radius: 50vw 50vw 5vw 5vw ;
    padding: 6% 6% 8% 6%;
    border: 5px solid #3E3A39;

}
#sec-2 .item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

#sec-2 h3 {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 13em;
    margin: 0 auto 1em auto;
    font-size: 1.4em;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
#sec-2 h3.active {
    opacity: 1;
    transform: translateY(0);
}

#sec-2 h3::before,
#sec-2 h3::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0 , -50%);
    width: auto;
    height: 2em;
    aspect-ratio: 1.49 / 10;
    background: url(../images/fukidashi_2.webp) no-repeat center / contain;
}

#sec-2 h3::before {
    left: 0;
    transform: translate(0 , -50%) rotate(-30deg);
}
#sec-2 h3::after {
    right: 0;
    transform: translate(0 , -50%) rotate(30deg);
}

.sec-2-wrap {
    position: relative;
    aspect-ratio: 4 / 5.3;
    width: 100%;
    max-width: 50svh;
    margin: 0 auto;
}

.item-title {
    position: relative;
    background-color: #fff;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding-top: 15%;    
    margin-bottom: 1em;
    pointer-events: none;
}

.item-1 .item-title  {
    border: .4em solid #c9a063;
}

.item-2 .item-title {
    border: .4em solid #f3a7a5;
}

.item-3 .item-title {
    border: .4em solid #8fc31f;
}

.item-title h4 {
    height: 24%;
    max-height: 4em;
}
.item-title h4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25%;
    font-size: min(3.75vw , 2.2svh , 18px);
}

/* だし */
.item-title .deco-1 {
    width: 38%;
    left: 7%;
    bottom: 9%;
}

.item-title .deco-2 {
    width: 35%;
    right: 12%;
    bottom: 12%;
    transform: rotate(20deg);
}


/* たんぱく食材 */

.item-2 .item-title .deco-1 {
    width: 24%;
    left: 0%;
    bottom: 20%;
    transform: rotate(20deg);
}

.item-2 .item-title .deco-2 {
    width: 35%;
    left: 24%;
    bottom: 4%;
    transform: rotate(-20deg);
}

.item-2 .item-title .deco-3 {
    width: 44%;
    right: 20%;
    bottom: 29%;
    transform: rotate(-0deg);
}

.item-2 .item-title .deco-4 {
    width: 30%;
    right: -2%;
    bottom: 8%;
    transform: rotate(-5deg);
}

/* おにぎり */
.item-3 .item-title .deco-1 {
    width: 41%;
    left: 12%;
    bottom: 19%;
    transform: rotate(10deg);
}

.item-3 .item-title .deco-2 {
    width: 35%;
    right: 14%;
    bottom: 11%;
    transform: rotate(-20deg);
}

/* ページ */
#page {
    display: flex;
    justify-content: center;
    gap: 1em;
    width: 75%;
    max-width: 250px;
    margin: 0 auto .5em auto;
}

#page .flex-item {
    container-type: inline-size; 
    position: relative;
    width: calc(100% / 3 - 1em);
    margin: 0 auto;
}

#page .flex-item p {
    width: 100%;
    font-size: 15cqw; 
    color: #fff;
    text-align: center;
    white-space: nowrap;

}

#page .flex-item img {
    width: 100%;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#page .flex-item.active img {
    opacity: 1;
}


#sec-2-arrows {
    position: absolute;
    z-index: 5;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    margin: 0 auto 1.5em auto;
    width: 110%;
}

#sec-2-arrows .arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #EA5946;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#sec-2-arrows .arrow-btn.is-disabled {
    background-color: #ccc; 
}
#sec-2-arrows .arrow-btn.is-disabled:hover {
    background-color: #ccc;
}

#sec-2-arrows .arrow-btn:hover {
    opacity: .5;
}

#sec-2-arrows .arrow-btn:active {
    transform: scale(0.95);
}

#sec-2-arrows .arrow-btn img {
    width: 30%;
}



/* ---------------------------------- レシピ一覧 ---------------------------------- */

#sec-3 {
    background-color: #FFFBEB;
    overflow: hidden;
}

#sec-3 h3 {
    position: relative;
    width: 100%;
    margin-bottom: 2em;
    opacity: 0;
    transform: scale(.8);
    will-change: transform, opacity;
}
#sec-3 h3.active {
    animation: bound_pop 0.6s ease-out forwards; 
}

#recipe-page.load #sec-3 h3 {
    animation: bound_pop 0.6s ease-out forwards; 
}

#sec-3 h3 span {
    display: none;
}



#sec-3 span.onigiri {
    /* content: ''; */
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(10% , 8%) rotate(18deg);
    width: 10em;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../images/deco/item-12-b2.webp) no-repeat center / contain;
}

#sec-3 h3 img {
    position: relative;
    z-index: 1;
    width: 100%;
}

#sec-3 .title-t {
    margin-bottom: 2em;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
#sec-3 .title-t.active,
#recipe-page.load #sec-3 .title-t  {
    opacity: 1;
    transform: translateY(0);
}


.sec-3-img {
    position: relative;
    width: 100%;
    margin-bottom: 2em;
}
.sec-3-img img {
    width: 100%;
}

.sec-3-img .img-t {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(10% , 10%) scale(1.1);
    width: 80%;
    opacity: 0;
    transition: .5s ease all;
}
.sec-3-img.active .img-t {
    opacity: 1;
    transform: translate(10% , 10%) scale(1);
}

.sec-3-img .img-t p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    color: #fff;
    font-size: 1.1em;
}



.recipe ul {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.recipe.splide ul.splide__list {
    flex-direction: row;
    gap: 0;
}


.recipe li {
    position: relative;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
.recipe li.active {
    opacity: 1;
    transform: translateY(0);
}


.recipe-page .recipe li {
    opacity: 1;
    transform: translateY(0);
}

.recipe li.resipe-item::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -.6em;
    transform: translateY(50%);
    width: 1.5em;
    height: 65%;
    /* aspect-ratio: 5 / 2.2; */
    background: url(../images/note.webp) repeat-y top / contain;
}

.recipe li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.recipe li h4 {
    border-radius: 1em 1em 0 0;
    padding: 1em .5em;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.28em;
    line-height: 1.5;
    background-image: linear-gradient(45deg, #8FCEC0 0%, #008CD6 40%, #B4A2CA 70%, #D59CB2 80%, #E898A3 90%, #F0979E 100%);
}

.recipe-page .recipe li h4 {
    position: relative;
   display: flex;
   align-items: center;
   gap: .5em;
   padding: 1em .5em 1em 1em;
}
.recipe-page .recipe li h4::before {
    content: '';
    width: 2.5em;
    height: auto;
    aspect-ratio: 4.2 / 5;
}
.recipe-page .recipe li.time-1 h4::before {
    background: url(../images/recipe/time-1.webp) no-repeat center / contain;
}
.recipe-page .recipe li.time-2 h4::before {
    background: url(../images/recipe/time-2.webp) no-repeat center / contain;
}
.recipe-page .recipe li.time-3 h4::before {
    background: url(../images/recipe/time-3.webp) no-repeat center / contain;
}

.recipe-page .recipe li.time-4 h4::before {
    background: url(../images/recipe/time-4.webp) no-repeat center / contain;
}



.recipe-cnt {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 1em 1em;
    border: 5px solid #008CD6;
    border-top: 0;
    background-color: #fff;
}
.recipe-cnt-in {
    width: 80%;
    margin: 0 auto;
}

.recipe-cnt .text-box {
    position: relative;
    padding: 1em 1em 1em 1.5em;
}
.recipe-cnt .text-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    transform: translate(0, 75%) rotate(-30deg);
    width: 2em;
    height: 2.5em;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}


.recipe-cnt p.t-1 {
    padding: .5em .5em .5em 1.5em;
    color: #008CD6;
    text-align: center;
}



.recipe-cnt img.thumbnail {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    background-color: #727272;
}

/* レシピを見る（more）ボタン */

.recipe-btn {
    container-type: inline-size;
    display: grid;
    position: relative;
    width: 12em;
    max-width: 100%;
    aspect-ratio: 10 / 3.6;
    height: auto;
    margin-left: auto;
    transform: translate(5% , -25%) scale(1);
    background: url(../images/more_btn.webp) no-repeat center / contain;
}
.recipe li .recipe-btn {
    transform: translate(5% , -25%) scale(1);
    transition: .2s ease all;
}
.recipe li:hover .recipe-btn {
    transform: translate(5% , -25%) scale(1.1);
}

.recipe-btn p {
    transform: translateY(-5%);
    font-size: 8.5cqw;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-btn p::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    transform: translate(-1.5em , -50%);
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: .5em;
    background: url(../images/arrow.webp) no-repeat center / contain;   
}


.recipe-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* もっと見るボタン */
#sec-3 .recipe li.more-item {
    display: none;
}

#sec-3 .recipe.open li.more-item {
    display: block;
    animation: fadeIn 0.5s ease both;
}

.more-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

#show-more-btn {
    display: inline-block;
    padding: 1em 3em;
    width: 80%;
    font-size: 1.5em;
    background-color: #EA5946;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    background: #EA5946 url(../images/more.webp) no-repeat 90% / 2em;
    font-family: "Zen Maru Gothic", sans-serif;
    opacity: 1;
    transition: opacity .2s ease;

}

#show-more-btn:hover {
    opacity: .5;
}


/* ---------------------------------- レシピが出来るまで ---------------------------------- */

#sec-4 {
    padding: 6em 0 3em 0;
    position: relative;
    background: linear-gradient(
        to bottom, 
        #FFFBEB 0%, 
        #FFFBEB 60%, 
        rgba(255, 251, 235, 0) 100% 
    );
    overflow: hidden;
}

#sec-4 .sec-4-wrap {
    position: relative;
}

#sec-4 .border {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 2em;
    height: calc(100% -  1em);
}

#sec-4 .border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    border-left: 3px dashed #008CD6;
}


.sec-4-in {
    width: 92%;
    margin-left: auto;
}

.sec-4-4 .photo-img {
    object-position: top;
}



#sec-4 h3 {
    margin-bottom: 2em;
    transform: scale(.8);
    opacity: 0;
    will-change: transform, opacity;    
}
#sec-4 h3.active {
    animation: bound_pop 0.6s ease-out forwards;
}

#sec-4 h3 img {
    width: 100%;
}

#sec-4 h3 span {
    display: none;
}


.day h4 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 1.5em;
    opacity: 0;
    transform: translateX(-1em);
    transition: .5s ease all;
}
.day.active h4 {
    opacity: 1;
    transform: translateX(0);
}

.day h4::before {
    content: '';
    display: inline-block;
    transform: translateY(12%);
    width: 1.2em;
    height: 1.2em;
    z-index: 2;
    margin-right: .2em;
    background: url(../images/sec-4-icon.webp) no-repeat center/ contain;
}

.day h4 span {
    margin-left: .25em;
    font-weight: 500;
    font-size: .6em;
    background-color: #3E3A39;
    color: #fff;
    padding: .25em .5em;
}

#sec-4 .text-box{
    padding: 1em 2em 0 2em;
}

#sec-4 p a {
    color: #FFFF99;
    border-bottom: 1px #FFFF99 solid;
}

.day-wrap {
    width: calc(100% - 2.5em);
    margin-left: auto;
}


.photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    padding: 1.2em;
    background-color: #fff;
    border: 2px solid #008CD6;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #727272;
}

.photo-item {
    margin-bottom: 3em;
    position: relative;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
.photo-item.active {
    opacity: 1;
    transform: translateY(0);
}



.photo-t {
    margin-top: .5em;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    background-color: #008CD6;
    color: #fff;
    border-radius: 50vw;

}



.photo-item-1 .deco-1{
    bottom: 20%;
    left: -5%;
    width: 15%;
    transform: rotate(-20deg) scale(1);
    animation: cradle-p1 1.5s ease-in-out infinite;
}
@keyframes cradle-p1 {
    0%, 100% {
    transform: rotate(-20deg) scale(1);
    }
    50% {
    transform: rotate(-20deg) scale(1.2);
    }
}



.masute,
.masute-1,
.masute-2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50% , -10%);
    display: block;
    width: 55%;
    height: auto;
    aspect-ratio: 10 / 1.62;
}

.photo-item-1 .masute,
.photo-item-img .masute-1 {
    background: url(../images/masute.webp) no-repeat center / contain;
    transform: translate(-50% , -10%) rotate(10deg);
}

.photo-item-img .masute-2 {
    background: url(../images/masute-2.webp) no-repeat center / contain;
    transform: translate(-50% , -10%) rotate(-10deg);
}



.photo-item-2 {
    background-color: #fff;
    padding: 1em 1em 2em 1em; 
    border: 2px solid #008CD6;
}

.photo-item .text-box p {
    padding: .2em 0;

    background-image: linear-gradient(transparent calc(100% - 1px), #ccc calc(100% - 1px));
    background-size: 100% 1.8em; 
    background-repeat: repeat;
    
    line-height: 1.8; 
}


.photo-item p.photo-t {
    border-bottom: 0;
    padding: .25em 1.5em .5em 1.5em;
}
.photo-item p.photo-t span {
    display: inline-block;
}


.photo-item p.note {
    font-size: .8em;
    color: #EA5946;
    border-bottom: 0;
}

.photo-item-3 .deco-1 {
    top: 50%;
    right: 0;
    transform: translate(-20% , -40%);
    width: 35%;
}

.photo-item-4 .deco-1 {
    bottom: 0;
    left: 0;
    transform: translate(-20%, 90%) rotate(0);
    z-index: 2;
    width: 50%;
    animation: initial;
}

.photo-item.photo-item-4 {
    margin-bottom: 10em;
}

.photo-item-5 .deco-1 {
    top: 45%;
    right: 0;
    left: auto;
    transform: translateX(15%) rotate(10deg);
    width: 15%;
    animation: cradle-p3 1.5s ease-in-out infinite;
}
@keyframes cradle-p3 {
    0%, 100% {
    transform: translateX(15%) rotate(10deg);
    }
    50% {
    transform: translateX(15%) rotate(-5deg);
    }
}


.photo-item-5 .deco-2 {
    top: 40%;
    right: -9%;
    left: auto;
    transform: rotate(10deg) scale(1);
    width: 10%;
    animation: glitter2 2s ease-in-out infinite;
}
@keyframes glitter2 {
    0%, 100% {
        opacity: 0.8;
        transform: rotate(10deg) scale(1);
    }
    50% {
        opacity: 1;
    transform: rotate(10deg) scale(1.2);
    }
}



.photo-item-img {
    position: relative;
    width: 90%;
    margin: 0 auto 1em auto;
    transform: translateY(1em) rotate(0);
}
.photo-item.photo-item-img.active {
    transform: translateY(0) rotate(5deg);
}

.photo-item-img.photo-item-7,
.photo-item-img.photo-item-9 {
    transform: rotate(0);
}
.photo-item.photo-item-img.photo-item-7.active,
.photo-item.photo-item-img.photo-item-9.active {
    transform: translateY(0) rotate(-5deg);
}






/* ---------------------------------- フッター ---------------------------------- */


footer {
    padding: 3em 0 1em 0;
    background-color: #008CD6;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.footer-in {
    width: 90%;
    margin: 0 auto;
}

.copylight {
    text-align: center;
    color: #fff;
    font-size: 12px;
}


.flex-sns {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: .5em;
    max-width: 180px;
    margin: 0 auto;
}


.flex-sns .flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.flex-sns .flex-item {
    position: relative;
    width: 50%;
    height: auto;
    display: flex;
}

.flex-sns .flex-item a,
.flex-sns .sns-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flex-sns .flex-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    align-content: center;
}

.flex-sns .sns-item {
    position: relative;
    width: 100%;
    height: 2em;
    aspect-ratio: initial;
}
.flex-sns .sns-item img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.flex-sns .sns-item.sns-item1 {
    width: 100%;
    height: min(3.25vw , 70px);
    margin: 0 auto;
}


/* -------------------------------------------------------------------- レシピページ ---------------------------------- */


main.recipe-page {
    position: initial;
}

main.recipe-page::after {
    background-color: #FFFBEB;
    background-image: none;
}

.recipe-page .text-box {
    padding: 0 1em 1em 1em;
}

.recipe-1,
.recipe-2 {
    position: relative;
    border: 1px solid #df92bc;
    padding: 3em 1em 1em 1em;
    margin-bottom: 1.5em;
    opacity: 0;
    transform: translateY(1em);
    transition: .5s ease all;
}
.recipe-1.active,
.recipe-2.active {
    opacity: 1;
    transform: translateY(0);
}

.recipe-1 h5,
.recipe-2 h5 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(1em , -.5em);
    padding: .5em  1em;
    background-color: #df92bc;
    color: #fff;
    font-weight: 700;
}

.recipe-1 h5::after,
.recipe-2 h5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 15px;
    height: 100%;
    background-color: #df92bc;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.recipe ul.ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 0;
}



.ingredient-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8em;
    border-bottom: 1px dashed #ccc;
    font-family: "Zen Maru Gothic", sans-serif;
    
    font-size: 1em;
    line-height: 1.7;
    font-weight: 500;
    color: #3E3A39;
}

.ingredient-list li.recipe-1  {
    padding: .5em;
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.ingredient-list li.li-img {
    border-bottom: 0;
}

.ingredient-list .name {
    font-weight: 500;
    /* width: 50%; */
    line-height: 1.7;
}

.ingredient-list .amount {
    font-weight: 700;
    text-align: right;
    /* width: 50%; */
    min-width: 6em;
}


.recipe-img {
    width: 100%;
    background-color: #727272;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.5em;
}

.recipe-img img {
    width: 100%;
}


.recipe-page .recipe-cnt {
    padding: .5em 2em 2em 2em;
}

.recipe-page .recipe-cnt img.thumbnail {
    aspect-ratio: 16 / 9;
}

.recipe-page .recipe-cnt p.t-1 {
    padding: .5em 1em;
    border-radius: 50vw;
    color: #fff;
    background-color: #008CD6;
    margin: .5em auto 2em auto;
}

.recipe-page .recipe li.resipe-item::after {
    height: 80%;
}

.recipe.splide li.resipe-item::after {
    height: 60%;
    display: none;
}


.recipe-nam {
    background-color: #3E3A39;
    color: #fff;
    margin-right: .25em;
    padding: 0 .25em;
}

.recipe li a.recipe-a {
    position: initial;
    color: #EA5946;
}

.ingredient-list .mark {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.25;
    text-align: center;
    border-radius: 50%;
    margin-right: 0.2em;
    vertical-align: middle;
}

.ingredient-list .mark.mark-a {
    background-color: #df92bc;
}
.ingredient-list .mark.mark-b {
    background-color: #008CD6;
}


.recipe-3 h5 {
    text-align: center;
    background-color: #008CD6;
    color: #fff;
    padding: .5em 1em;
    border-radius: 50vw;
}


.recipe-3 .ingredient-list li {
    display: block;
}

.recipe-3 .item-img {
    aspect-ratio: 2 / 1;
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}

.recipe-3 .item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recipe .recipe-3 li p.item-name {
    text-align: center;
    color: #008CD6;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1em;
}

.recipe .recipe-3 li p.item-name span {
    font-size: .8em;
    margin-left: .5em;
}
 
.recipe-page .recipe-btn {
    transform: translate(0);
}

.recipe-btn-2 {
    margin-top: 1.5em;
}

.recipe-page #slider-placeholder .recipe li {
    padding: 0 .5em;
}

.recipe-btn-2 .btn-1 {
    position: relative;
    width: 80%;
    padding: .5em 1em;
    margin: 0 auto;
    border-radius: 50vw;
    font-size: 1.5em;
    text-align: center;
    background-color: #EA5946;
    background: #EA5946 url(../images/arrow.webp) no-repeat 90% / 1em;
    margin-bottom: 1em;
    opacity: 1;
    transition: opacity .2s ease;
}
.recipe-btn-2 .btn-1:hover {
    opacity: .5;
}

.recipe-btn-2 .btn-1 p {
    color: #fff;
}
.recipe-btn-2 .btn-1 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recipe-btn-2 .flex {
    display: flex;
    gap: 1em;
}


.btn-2 { 
    position: relative;
    width: calc(100% / 2 - 1em);
    background-color: #008CD6;
    border-radius: 50vw;
    padding: .5em;
    text-align: center;
}
.btn-2.back {
    background: #008CD6 url(../images/arrow-l.webp) no-repeat 10% / 1em;  
}
.btn-2.next {
    background: #008CD6 url(../images/arrow.webp) no-repeat 90% / 1em;  
}


.btn-2 p {
    color: #fff;
}

.btn-2 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#slider-placeholder {
    font-size: min(3.75vw , 14px);

}


.recipe-splide {
    position: relative;
    width: 100%;
    max-width: 500px; 
    margin: 0 auto;
    padding: 0 2em; 
    box-sizing: border-box;
}

.recipe-splide .resipe-item {
    width: 100%;
    box-sizing: border-box;
}

.recipe-page .recipe-splide .recipe-cnt {
    padding: .5em 0 0 0;
    overflow: hidden;
}

.recipe-page .recipe-splide .recipe-cnt p.t-1 {
    display: none;

}

.recipe.recipe-splide li h4 {
    font-size: 1.1em;
    display: block;
    padding: 1em .5em;
}

.recipe-page .recipe-splide .text-box {
    text-align: center;
}

.recipe-splide .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3em;
    height: 3em;
    border-radius: 50vw;
    background-color: #EA5946; 
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.recipe-splide .splide__arrow:hover {
    opacity: .5;
}

.recipe-splide .splide__arrow--prev {
    left: 0;
}

.recipe-splide .splide__arrow--next {
    right: 0;
}

.recipe-splide .splide__arrow img {
    width: 30%;
}

.recipe-splide .splide__pagination__page.is-active {
    background: #df92bc;
}


.recipe-page .recipe-splide .recipe-btn {
    transform: translate(0, -25%); 
}



/* -------------------------------------------------------------------- aside ---------------------------------- */

aside {
    display: none; 
}

@media screen and (min-width: 1230px) {
    aside {
        display: block;
        position: fixed;
        top: 0;
        width: calc(50vw - 350px);
        height: 100vh;
        padding: 1em;
        box-sizing: border-box;
        z-index: 99;
        font-size: min(3.75vw , 16px);
    }

    #aside-right {
        right: 0;
    }

    #aside-left {
        left: 0;
    }

    


    /* 左サイドr */

    #aside-left .aside-in {
        width: 90%;
        max-width: 400px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
        visibility: inherit;
    }

    #aside-left .aside-in.has-scroll {
       visibility: hidden;
    }
    .aside-in h1 {
        position: relative;
    }
    .aside-in h1 span {
        display: none;
    }
    

    .aside-in h1 a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .aside-in h1 img {
        width: 100%;
        height: auto;
    }

    .nav-bg {
        background-color: #fff;
        border-radius: 2em;
        padding: 1.5em 1em 1em 1em;
        margin-top: 2em;
        width: 100%;
    }

    #aside-left .aside-in ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 1em;
    }

    #aside-left .aside-in li {
        position: relative;
        font-family: "Zen Maru Gothic", sans-serif;
        color: #008CD6;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        padding-bottom: .5em;
        margin-bottom: .5em;
        padding-left: 1em;
        border-bottom: 1px dashed #ccc;
        font-size: min(1.38vw , 20px);
        font-size: min(1vw , 20px);
        transition: opacity 0.3s ease;
    }
    #aside-left .aside-in li:hover {
        opacity: 0.7;
    }

    .aside-in li a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #aside-left .aside-in li::before {
        content: '';
        display: inline-block;
        transform: translateY(20%);
        width: 1.5em;
        height: auto;
        margin-right: .5em;
        aspect-ratio: 1 / 1;
        background: url(../images/sec-4-icon.webp) no-repeat center / contain;
    }


    /* 右サイド */
    #aside-left,
    #aside-right
     {
        top: 50%;
        transform: translateY(-50%);
    }

    #aside-right .aside-in {
        position: relative;
        max-width: 500px;
        height: 100%; 
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        visibility: inherit;
    }

     #aside-right .aside-in.has-scroll {
        visibility: hidden;
     }

    #aside-right .scroll {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 8%;
        max-width: 25px;
        transform: translate(100% , -5%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10;
    }
    #aside-right .scroll.is-show {
        opacity: 1;
        visibility: visible;
    }

    #aside-right .flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 1em;
    }

    #aside-right .flex-item {
        container-type: inline-size;
        position: relative;
        width: calc(100% / 2 - 1em);
        height: auto;
        aspect-ratio: 1 / 1; 
    }

     #aside-right .flex-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background: url(../images/aside-r-bg.webp) no-repeat center/ contain;
        animation: rotate_bg 15s linear infinite;
        }

        @keyframes rotate_bg {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

      #aside-right .flex-item img {
        width: auto;
        height: 65%;
        position: relative;
        z-index: 2;
        margin: 0 auto;
        display: block;
      }

    #aside-right .flex-item  a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    #aside-right .flex-item p {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50% , -17cqw);
        width: 100%;
        height: 2.5em;
        display: grid;
        justify-items: center;
        align-content: center;
        text-align: center;
        color: #008CD6;
        font-size: 7.2cqw; 
        line-height: 1.2;
    }


}

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


    #aside-right .flex-item {
        display: block;
        width: 75%;
        margin: 0 auto;
    }

    #aside-right .flex-item:nth-child(even) {
        transform: translateY(0);
    }


    
}


@media screen and (max-width: 1230px) {
    .header-menu {
        display: block;
    }
    .flex-sns .sns-item.sns-item1 {
        height: min(10.9vw , 60px);
        
    }
}


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

    .fv-title {
        padding-top: 10%;
    }

    .triangle{
    transform: translate(-10%, -23%); 
    }

    .triangle .deco-3 {
        display: none;
    }
    .triangle .deco-5 {
        display: none;
    }

    .title-logo .deco-5 {
        top: -37%;
        left: -3%;
    }


}


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

    .recipe-splide .splide__arrow:hover {
        opacity: 1;
    }
    .recipe li:hover .recipe-btn {
        transform: translate(5% , -25%) scale(1);
    }
    #show-more-btn:hover {
        opacity: 1;
    }
    #sec-2-arrows .arrow-btn:hover {
        opacity: 1;
    }
    #sns .sns-wrap:hover img.sns-img {
        transform: scale(1);
    }

    .top-btn-in:hover {
        transform: translateY(0);
    }

    .hamburger:hover {
        background-color: #008CD6;
    }

    .hamburger:hover span {
        background-color: #fff;
    }
    .recipe-btn-2 .btn-1:hover {
        opacity: 1;
    }
    #nav li:hover {
        opacity: 1;
    }



}

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

    .photo-item.photo-item-4 {
        margin-bottom: 8em;
    }
}



