@charset "UTF-8";

body {
    font-family: 'DM Serif Display', serif;
    font-family: 'IM Fell English', serif;
    font-family: 'IM Fell Great Primer SC', serif;
    font-family: 'Imprima', sans-serif;
    font-family: 'Inter', sans-serif;
    font-family: 'Karantina', cursive;

}


/* ローディング画面のcss */

#splash {
    /* fixedで全面に固定 */

    position: relative;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: #fff;
    text-align: center;
    color: #000;


}

/* ローディングバー中央配置 */

#splash_text {
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 50%;
    transform: translate(-50%, -50%);
    color: #000;
}


/* header */


.header-ttl {
    font-size: 50px;
    font-weight: bold;
    margin-top: 72px;
    margin-left: 102px;
    line-height: normal;
    letter-spacing: 9.6px;

}

.header-ttl-link {
    text-decoration: none;
    color: #000;
    font-family: 'Karantina', cursive;
    margin-top: 72px;
}

.header-nav-list {
    display: flex;
    justify-content: center;
    margin-left: 850px;
    gap: 78px;
    margin-top: -80px;

}

.header-logo {
    width: 90px;
    height: 90px;
}

.header-nav-item {
    list-style: none;

}

/* ここから下がハンバーガーメニューに関するCSS */

/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 80px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
    margin-top: 5px;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 5px;
    width: 50px;
    border-radius: 3px;
    background: #000;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 23px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 23px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}




/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;

}

.nav-link {
    color: #000;
    text-decoration: none;
    margin-top: 30px;
}

.nav_item {
    text-decoration: none;
    color: #000;
    margin-top: 70px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    left: 0;
    /* メニューを画面に入れる */
}


/* メニューのデザイン*/
.nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
    text-align: center;
    padding-top: 100px;
    font-size: 60px;
    font-family: 'Inter', sans-serif;

}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
    right: 0;
}



.kv-wrap {
    margin-top: 104px;
}

.kv-img {
    width: 1412px;
    height: 1205px;
    margin: 0 auto;
}

.kv-txt {
    font-family: 'Inter', sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 67.2px;
    position: absolute;
    top: 750px;
    left: 120px;

}

.kv-txt {
    animation-name: fadeLeftAnime;
    animation-duration: 7.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* concept */

.section-concept-wrap {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.section-concept-wrap.active {
    opacity: 1;
    transform: translate(0, 0);
}

.concept-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 412px;
    margin-left: 113px;
}

.concept-sub-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 110px;
    margin-top: 89px;
}

.concept-txt {
    font-family: 'Karantina', cursive;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0px;
    margin-top: 64px;
    margin-left: 116px;

}

.concept-img {
    width: 793px;

    margin-left: 689px;
    margin-top: -650px;

}

/* new product */

.section-new-product-wrap {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.section-new-product-wrap.active {
    opacity: 1;
    transform: translate(0, 0);
}

.new-product-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    margin-top: 376px;
    text-align: center;

}

.new-product-img {
    width: 814px;
    height: 743px;
    margin-left: 74px;
    margin-top: 246px;
}

.new-product-inner {
    display: flex;
    flex-wrap: wrap;



}


.new-product-name {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    margin-top: 500px;
    margin-left: 126px;
    text-align: center;

}

.new-product-price {
    font-family: 'Imprima', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    margin-top: 568px;
    margin-left: -240px;
    text-align: center;

}


.new-product-btn {
    width: 284px;
    height: 57px;
    border: 1px solid #000;
    text-align: center;
    align-items: center;
    margin-top: 700px;
    margin-left: -200px;
}

.btn-link-txt {


    font-family: 'Imprima', sans-serif;
    font-size: 32px;
    text-decoration: none;
    color: #000;
    margin: 0 auto;


}




/* product */

.section-product-wrap {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.section-product-wrap.active {
    opacity: 1;
    transform: translate(0, 0);
}

.product-ttl {
    margin-top: 400px;
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

.product-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 270px;
    gap: 80px;
}

.product-img {
    width: 557px;
    height: 751px;


}

.product-img2 {
    width: 674px;
    height: 508px;
}

.product-menu-ttl {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    margin-top: 57px;
}

.product-menu-price {
    font-family: 'Imprima', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    margin-top: 29px;
}

.menu-btn-link-txt {
    width: 284px;
    font-family: 'Imprima', sans-serif;
    font-size: 32px;
    align-items: center;
    text-decoration: none;
    color: #000;

    border: 1px solid #000;
    text-align: center;
    padding: 10px 90px 10px 90px;


}

.product-btn-link {
    margin-top: 188px;

}

.product-inner2 {
    text-align: center;
    margin-top: 200px;
}

.product-inner {
    text-align: center;
}


/* inner content */

.inner-content {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}


.inner-content.active {
    opacity: 1;
    transform: translate(0, 0);
}

.inner-content-img {
    display: flex;
    margin-left: 40px;
    margin-top: 400px;
}


.inner-img {
    width: 875px;
}

.inner-content-txt {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    margin-left: 90px;
    margin-top: 300px;
    text-align: center;
    letter-spacing: 2px;
}

/* footer */

.footer {
    width: 100%;
    height: 1075px;
    background: rgba(205, 231, 206, 0.60);
    margin-top: 370px;

}

.footer-list-inner {

    margin-top: -100px;



}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 50px;
    padding-top: 100px;
    margin-left: 150px;

}

.footer-nav-item {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}



.footer-content-ttl {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    margin-top: 218px;
}

.footer-logo {
    width: 90px;
    height: 90px;
}

.footer-sns-item {
    list-style: none;
}

.footer-sns-list {
    display: flex;
    justify-content: center;
    gap: 65px;
    margin-top: 65px;
    margin-left: -40px;
}

.footer-copy {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    margin-top: 100px;
}

/* concept menu */

.concept-kv-img {
    width: 1416px;
    height: 637px;
    margin: 0 auto;
}

.concept-kv-inner {

    margin-top: 156px;

}

.concept-kv-txt {
    font-family: 'Karantina', cursive;
    font-size: 128px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    letter-spacing: 60.2px;
    left: 482px;
    top: 608px;

}

.section-concept-menu-wrap {
    text-align: center;

}

.section-concept-menu-wrap2 {
    text-align: center;
}

.concept-menu-inner {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.concept-menu-inner.active {
    opacity: 1;
    transform: translate(0, 0);
}

.section-concept-menu-wrap2 {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1s;
}

.section-concept-menu-wrap2.active {
    opacity: 1;
    transform: translate(0, 0);
}

.concept-menu-ttl {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    margin-top: 285px;
}

.concept-menu-txt {
    font-family: 'Karantina', cursive;
    font-size: 36px;
    margin-top: 140px;
}

.concept-menu-txt2 {
    font-family: 'Karantina', cursive;
    font-size: 36px;
    margin-top: 100px;

}

.concept-menu-img {
    width: 1353px;
    margin: 0 auto;
    margin-top: 200px;
}


/* タブレット */

@media screen and (max-width: 1080px) {
    /* ローディング画面のcss */

    #splash {
        /* fixedで全面に固定 */

        position: relative;
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background: #fff;
        text-align: center;
        color: #000;


    }

    /* ローディングバー中央配置 */

    #splash_text {
        position: absolute;
        position: fixed;
        top: 50%;
        left: 50%;
        z-index: 999;
        width: 50%;
        transform: translate(-50%, -50%);
        color: #000;
    }

    .header-ttl {
        font-size: 40px;
        font-weight: bold;
        margin-top: 45px;
        margin-left: 41px;
        line-height: normal;
        letter-spacing: 9.6px;

    }

    .header-ttl-link {
        text-decoration: none;
        color: #000;
        font-family: 'Karantina', cursive;
        margin-top: 45px;
    }

    .header-nav-list {
        display: flex;
        justify-content: center;
        margin-left: 302px;
        gap: 78px;
        margin-top: -60px;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    .header-nav-item {
        list-style: none;


    }

    .drawer_open {
        display: flex;
        height: 80px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 100;
        /* 重なり順を一番上にする */
        cursor: pointer;
        margin-top: -10px;
    }

    /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 5px;
        width: 50px;
        border-radius: 3px;
        background: #000;
        transition: 0.5s;
        position: absolute;
    }

    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
        bottom: 15px;

    }

    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
        top: 15px;
    }

    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked~.drawer_open span {
        background: rgba(255, 255, 255, 0);
    }

    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked~.drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked~.drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }




    /* メニュー黒ポチを消す */
    .nav_list {
        list-style: none;

    }

    /* メニューのデザイン*/
    .nav_content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0%;
        right: 100%;
        /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: #fff;
        transition: .5s;
        text-align: center;
        padding-top: 100px;
        font-size: 40px;
        font-family: 'Inter', sans-serif;

    }

    .kv-wrap {
        margin-top: 104px;
    }

    .kv-img {
        width: 781px;
        height: 677px;
        margin: 0 auto;
    }

    .kv-txt {
        font-family: 'Inter', sans-serif;
        font-size: 50px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 30.2px;
        position: absolute;
        top: 550px;
        left: 120px;

    }

    .kv-txt {
        animation-name: fadeLeftAnime;
        animation-duration: 7.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeLeftAnime {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* concept */

    .section-concept-wrap {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-concept-wrap.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .concept-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 255px;
        margin-left: 48px;
    }

    .concept-sub-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-left: 48px;
        margin-top: 29px;
    }

    .concept-txt {
        font-family: 'Karantina', cursive;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
        margin-top: 29px;
        margin-left: 48px;

    }

    .concept-img {
        width: 623px;
        height: 100%;
        margin-left: 304px;
        margin-top: 57px;
        margin: 0 auto;
        margin-top: 100px;

    }

    .concept-inner {
        text-align: center;
    }

    /* new product */

    .section-new-product-wrap {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-new-product-wrap.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .new-product-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 57px;
        font-style: normal;
        font-weight: 400;
        margin-top: 306px;
        text-align: center;

    }

    .new-product-img {
        width: 700px;
        height: 100%;
        margin-left: 0px;
        margin: 0 auto;
        margin-top: 150px;

    }

    .new-product-inner {
        display: block;
        justify-content: center;
        text-align: center;



    }


    .new-product-name {
        font-family: 'Inter', sans-serif;
        font-size: 45px;
        font-style: normal;
        font-weight: 400;
        margin-top: 150px;
        margin-left: 30px;
        text-align: center;

    }

    .new-product-price {
        font-family: 'Imprima', sans-serif;
        font-size: 37px;
        font-style: normal;
        font-weight: 400;
        margin-top: 80px;
        margin-left: 0px;
        text-align: center;

    }


    .new-product-btn {
        width: 284px;
        height: 65px;
        font-family: 'Imprima', sans-serif;


        color: #000;
        margin-left: 0;
        border: 1px solid #000;
        padding: 10px 90px 10px 90px;
        margin: 0 auto;
        text-align: center;
        margin-top: 50px;
        padding-bottom: 20px;

    }

    .btn-link-txt {
        font-family: 'Imprima', sans-serif;
        font-size: 32px;
        align-items: center;
        text-decoration: none;
        color: #000;
        margin: 0 auto;
        text-align: center;
        padding-top: -10px;


    }


    .product-ttl {
        margin-top: 400px;
        font-family: 'DM Serif Display', serif;
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        text-align: center;

    }

    .product-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 270px;
        gap: 80px;
    }

    .product-img {
        width: 557px;
        height: 751px;
        margin-top: 50px;


    }

    .product-img2 {
        width: 674px;
        height: 508px;
    }

    .product-menu-ttl {
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        margin-top: 57px;
    }

    .product-menu-price {
        font-family: 'Imprima', sans-serif;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        margin-top: 29px;
    }

    .menu-btn-link-txt {
        width: 284px;
        font-family: 'Imprima', sans-serif;
        font-size: 32px;
        align-items: center;
        text-decoration: none;
        color: #000;

        border: 1px solid #000;
        text-align: center;
        padding: 10px 90px 10px 90px;


    }

    .product-btn-link {
        margin-top: 188px;

    }

    .product-inner2 {
        text-align: center;
        margin-top: 200px;
    }

    .product-inner {
        text-align: center;
    }

    /* inner content */

    .inner-content {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }


    .inner-content.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .inner-content-img {
        display: block;
        margin-left: 0;
        margin-top: 400px;
        justify-content: center;
    }


    .inner-img {
        width: 663px;
        margin: 0 auto;
    }

    .inner-content-txt {
        font-family: 'Inter', sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        margin-left: 0;
        margin-top: 100px;
        text-align: center;
        letter-spacing: 2px;
    }

    /* footer */

    .footer {
        width: 100%;
        height: 975px;
        background: rgba(205, 231, 206, 0.60);
        margin-top: 370px;

    }

    .footer-list-inner {

        margin-top: -100px;



    }

    .footer-nav-list {
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 50px;
        padding-top: 100px;
        margin-left: 30px;

    }

    .footer-nav-item {
        text-decoration: none;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        border-bottom: 2px solid;
        padding-bottom: 10px;
    }



    .footer-content-ttl {
        text-align: center;
        font-family: 'DM Serif Display', serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        margin-top: 218px;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }

    .footer-sns-item {
        list-style: none;
    }

    .footer-sns-list {
        display: flex;
        justify-content: center;
        gap: 65px;
        margin-top: 65px;
        margin-left: -40px;
    }

    .footer-copy {
        font-family: 'DM Serif Display', serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        text-align: center;
        margin-top: 100px;
    }

    /* concept menu */

    .concept-kv-img {
        width: 100%;
        height: 637px;
        margin: 0 auto;
    }

    .concept-kv-inner {

        margin-top: 156px;

    }

    .concept-kv-txt {
        font-family: 'Karantina', cursive;
        font-size: 100px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        letter-spacing: 50.2px;
        left: 20%;
        top: 580px;

    }

    .section-concept-menu-wrap {
        text-align: center;

    }

    .section-concept-menu-wrap2 {
        text-align: center;
    }

    .concept-menu-inner {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .concept-menu-inner.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .section-concept-menu-wrap2 {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-concept-menu-wrap2.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .concept-menu-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 38px;
        margin-top: 285px;
    }

    .concept-menu-txt {
        font-family: 'Karantina', cursive;
        font-size: 28px;
        margin-top: 140px;
    }

    .concept-menu-txt2 {
        font-family: 'Karantina', cursive;
        font-size: 28px;
        margin-top: 100px;

    }

    .concept-menu-img {
        width: 1353px;
        margin: 0 auto;
        margin-top: 200px;
    }
}


/* mobile size */

@media screen and (max-width: 480px) {
    .header-ttl {
        font-size: 20px;
        font-weight: bold;
        margin-top: 45px;
        margin-left: 28px;
        line-height: normal;
        letter-spacing: 1.6px;

    }

    .header-ttl-link {
        text-decoration: none;
        color: #000;
        font-family: 'Karantina', cursive;
        margin-top: 45px;
    }

    .header-nav-list {
        display: flex;
        justify-content: center;
        margin-left: 102px;
        gap: 30px;
        margin-top: -40px;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }

    .header-nav-item {
        list-style: none;


    }

    .drawer_open {
        display: flex;
        height: 80px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 100;
        /* 重なり順を一番上にする */
        cursor: pointer;
        margin-top: -20px;
    }

    /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 5px;
        width: 30px;
        border-radius: 3px;
        background: #000;
        transition: 0.5s;
        position: absolute;
    }

    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
        bottom: 10px;

    }

    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
        top: 10px;
    }

    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked~.drawer_open span {
        background: rgba(255, 255, 255, 0);
    }

    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked~.drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked~.drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }




    /* メニュー黒ポチを消す */
    .nav_list {
        list-style: none;

    }

    /* メニューのデザイン*/
    .nav_content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0%;
        right: 100%;
        /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: #fff;
        transition: .5s;
        text-align: center;
        padding-top: 80px;
        font-size: 20px;
        font-family: 'Inter', sans-serif;

    }

    .kv-wrap {
        margin-top: 104px;
    }

    .kv-img {
        width: 376px;
        height: 100%;
        margin: 0 auto;
    }

    .kv-txt {
        font-family: 'Inter', sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 10.2px;
        position: absolute;
        top: 320px;
        left: 80px;

    }

    .kv-txt {
        animation-name: fadeLeftAnime;
        animation-duration: 7.5s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes fadeLeftAnime {
        from {
            opacity: 0;
            transform: translateX(-100px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* concept */

    .section-concept-wrap {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-concept-wrap.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .concept-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0 auto;
        margin-top: 205px;

    }

    .concept-sub-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-left: 0;
        margin: 0 auto;
        margin-top: 32px;

    }

    .concept-txt {
        font-family: 'Karantina', cursive;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0px;
        margin-left: 0;
        margin: 0 auto;
        margin-top: 29px;


    }

    .concept-img {
        width: 300px;
        height: 100%;
        margin-left: 304px;
        margin-top: 57px;
        margin: 0 auto;
        margin-top: 100px;

    }

    .concept-inner {
        text-align: center;
        margin: 0 auto;
    }

    /* new product */

    .section-new-product-wrap {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-new-product-wrap.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .new-product-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        margin-top: 206px;
        text-align: center;

    }

    .new-product-img {
        width: 300px;
        height: 100%;

        margin-left: 0px;
        margin: 0 auto;
        margin-top: 106px;

    }

    .new-product-inner {
        display: block;
        text-align: center;
        margin: 0 auto;
    }


    .new-product-name {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        margin-top: 50px;
        text-align: center;

    }

    .new-product-price {
        font-family: 'Imprima', sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        margin-top: 30px;
        margin-left: 0;
        text-align: center;

    }


    .new-product-btn {
        width: 184px;
        height: 47px;
        border: 1px solid #000;
        text-align: center;
        margin-left: 0px;
        padding: 0;
        padding-top: 5px;
        margin: 0 auto;
        margin-top: 50px;


    }




    .btn-link-txt {


        font-family: 'Imprima', sans-serif;
        font-size: 24px;
        text-decoration: none;
        color: #000;
        text-align: center;
        align-items: center;
        margin: 0 auto;


    }


    .product-ttl {

        font-family: 'DM Serif Display', serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        text-align: center;
        margin: 0 auto;
        margin-top: 200px;

    }

    .product-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 70px;
        gap: 80px;
    }

    .product-img {
        width: 300px;
        height: 357px;
        margin: 0 auto;


    }

    .product-img2 {
        width: 311px;
        height: 250px;
        margin: 0 auto;
    }

    .product-menu-ttl {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        margin-top: 50px;
    }

    .product-menu-price {
        font-family: 'Imprima', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        margin-top: 29px;
    }

    .menu-btn-link-txt {
        width: 84px;
        font-family: 'Imprima', sans-serif;
        font-size: 24px;
        align-items: center;
        text-decoration: none;
        color: #000;

        border: 1px solid #000;
        text-align: center;
        padding: 10px 50px 10px 50px;


    }

    .product-btn-link {
        margin-top: 38px;

    }

    .product-inner2 {
        text-align: center;
        margin-top: 50px;
    }

    .product-inner {
        text-align: center;
    }

    /* inner content */

    .inner-content {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }


    .inner-content.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .inner-content-img {
        display: flex;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 200px;
        justify-content: center;
    }


    .inner-img {
        width: 300px;
        margin: 0 auto;
    }

    .inner-content-txt {
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        margin-left: 0;
        margin: 0 auto;
        margin-top: 50px;
        text-align: center;
        letter-spacing: 0px;
    }

    /* footer */

    .footer {
        width: 100%;
        height: 775px;
        background: rgba(205, 231, 206, 0.60);
        margin-top: 270px;

    }

    .footer-list-inner {

        margin-top: -100px;



    }

    .footer-nav-list {
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 50px;
        padding-top: 100px;
        margin-left: 20px;

    }

    .footer-nav-item {
        text-decoration: none;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        border-bottom: 1px solid;
        padding-bottom: 10px;
    }



    .footer-content-ttl {
        text-align: center;
        font-family: 'DM Serif Display', serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        margin-top: 118px;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-sns-item {
        list-style: none;
    }

    .footer-sns-list {
        display: flex;
        justify-content: center;
        gap: 65px;
        margin-top: 65px;
        margin-left: -40px;
    }

    .footer-copy {
        font-family: 'DM Serif Display', serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        text-align: center;
        margin-top: 100px;
    }

    /* concept menu */

    .concept-kv-img {
        width: 100%;
        height: 237px;
        margin: 0 auto;
    }

    .concept-kv-inner {

        margin-top: 56px;

    }

    .concept-kv-txt {
        font-family: 'Karantina', cursive;
        font-size: 50px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        position: absolute;
        letter-spacing: 10.2px;
        left: 122px;
        top: 250px;

    }



    .concept-menu-ttl {
        font-family: 'DM Serif Display', serif;
        font-size: 25px;
        margin-top: 105px;
    }

    .concept-menu-txt {
        font-family: 'Karantina', cursive;
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
        margin-top: 100px;
    }






    .section-concept-menu-wrap {
        text-align: center;

    }

    .section-concept-menu-wrap2 {
        text-align: center;
    }

    .concept-menu-inner {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .concept-menu-inner.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .section-concept-menu-wrap2 {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
    }

    .section-concept-menu-wrap2.active {
        opacity: 1;
        transform: translate(0, 0);
    }



    .concept-menu-txt2 {
        font-family: 'Karantina', cursive;
        font-size: 18px;
        margin-top: 50px;

    }

    .concept-menu-img {
        width: 353px;
        margin: 0 auto;
        margin-top: 100px;
    }

    .footer-nav-list {
        list-style: none;
        display: flex;
        flex-flow: column;
        gap: 50px;
        padding-top: 30px;
        margin-left: 10px;

    }

    .footer-copy {
        font-family: 'DM Serif Display', serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        text-align: center;
        margin-top: 30px;
    }

    .footer {
        width: 100%;
        height: 500px;
        background: rgba(205, 231, 206, 0.60);
        margin-top: 200px;

    }

    .footer-content-ttl {
        text-align: center;
        font-family: 'DM Serif Display', serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        margin-top: 80px;
    }

    .footer-sns-list {
        display: flex;
        justify-content: center;
        gap: 45px;
        margin-top: 25px;
        margin-left: -40px;
    }


}