@charset "UTF-8";

/* ====================
common
==================== */
:root {
    --color--whitePink: #FEFAFA;
    --color--blewGreen: #6A8A93;
    --color--black: #37290C;
    --color--yomogiGray: #C4D4B8;
    --color--warmGray: #F2E9DD;
    --color--beige: #C4BBAF;
    --gradation--beige: linear-gradient(90deg, #C4BBAF 64.9%, rgba(196, 187, 175, 0.50) 100%);
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Kaku Gothic New",
        "Klee One",
        "Merienda",
        "Fraunces",
        sans-serif,
        cursive;
    color: var(--color--black, #37290C);
    font-size: 1.6rem;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.04em;
    background-color: var(--color--whitePink, #FEFAFA);
}

.container {
    overflow: hidden;
}

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

.spBr {
    display: block;
}

.pcBr {
    display: none;
}

.btn a {
    display: block;
    width: 300px;
    height: 36px;
    margin: 0 0 0 auto;
    padding: 4px 119px 15px 0;
    border-radius: 20px 0px 0px 0px;
    background: linear-gradient(90deg, #C4BBAF 64.9%, rgba(196, 187, 175, 0.50) 100%);
    color: var(--color--whitePink);
    text-align: right;
    font-family: Merienda;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    transition: 0.4s;
}

.btn a::after {
    content: url(../images/arrow.svg);
    width: 78.5px;
    height: 13px;
    display: block;
    position: absolute;
    top: 5px;
    right: 20.5px;
}

.btn a:hover {
    opacity: 0.6;
}

.fadeUp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeUp.is-active {
    opacity: 1;
    transform: translateY(0);
}

.sectionCatch {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.catchDiv {
    min-width: 150px;
}

.catchTxt {
    margin: 0 auto;
    text-shadow: 0px 0px 3px #E8B2B2;
    font-family: "Klee One";
    font-size: 2rem;
    line-height: 2.1;
    letter-spacing: 0.4em;
    writing-mode: vertical-rl;
}

.catchImg {
    min-width: 150px;
    width: 150px;
}

/* common pc */
@media screen and (min-width: 769px) {
    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }

    .btn a {
        width: 350px;
        margin: 0 auto;
        padding: 4px 151px 0 93px;
        border-radius: 20px 0px;
        white-space: nowrap;
    }

    .btn a::after {
        right: 50.5px;
    }

    .sectionCatch {
        width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .catchDiv {
        min-width: 270px;
    }

    .catchTxt {
        text-shadow: 0px 0px 6px #E8B2B2;
        font-size: 3.2rem;
        /* line-height: 2.1; */
        /* letter-spacing: 0.4em; */
    }

    .catchImg {
        min-width: 640px;
        width: 640px;
    }


    /* pc 769px */
}

/* ====================
header
==================== */
.header {
    width: 100%;
}

.header__fixed {
    position: fixed;
    z-index: 10;
    top: 20px;
    right: 0;
}

.header__navBtn {
    width: 28px;
    position: absolute;
    right: 20px;
}

.header__shadow {
    /* mix-blend-mode: multiply; */

    width: 50px;
    height: 250px;
    border-radius: 50px 0px 0px 50px;
    /* box-shadow: -4px 0px 4px 0px #F2E9DD; */
    /* box-shadow: -4px 0px 4px 0px rgba(242, 233, 221, 0.5); */
    box-shadow: -4px 0px 4px 0px rgba(196, 187, 175, 0.4);
    /* box-shadow: -4px 0px 4px 0px rgb(0 0 0 / 25%); */
    mix-blend-mode: darken;
    position: absolute;
    top: 65px;
    right: 0;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        display: none;
    }

    /* pc 769px */
}

/*====================
main
====================*/
/* nav */
.nav {
    width: 100%;
    height: 100dvh;
    background-color: var(--color--whitePink);
    padding: 20px 5.3%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateY(-110%);
    opacity: 0;
    transition: opacity 0.4s;
}

.nav.active {
    opacity: 1;
    transform: translateY(0);
}

.nav__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nav__logo {
    font-family: "Klee One";
    line-height: 1.25;
}

.nav__logo .spanIzen {
    font-size: 1.6rem;
    margin-left: 5px;
}

.nav__list {
    margin-top: 40px;
    text-align: left;
}

.nav__item {
    font-family: "Klee One";
    font-size: 1.4rem;
    line-height: 1.42;
    margin-top: 20px;
    white-space: nowrap;
}

.nav__topic {
    font-family: "Klee One";
    font-size: 2rem;
    font-weight: 600;
    /* line-height: 2.1; */
    display: inline;
    margin: 0 auto 0 0;
    background-size: 6px 2px;
    background-image: linear-gradient(to right, var(--color--blewGreen) 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    /* border-bottom: 2px dashed var(----color--blewGreen, #6A8A93); */
    padding-bottom: 1px;
}

.spanIzen {
    font-family: Merienda;
    font-size: 2rem;
    font-weight: 300;
    /* line-height: 2.1; */
}

.nav__subTopic {
    color: var(--color--blewGreen);
    display: none;
    transition: 0.4s;
}

.nav__wrap {
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.nav__reservation,
.nav__contact {
    text-align: center;
}

.nav__reservation {
    margin-top: 34px;
}

.nav__reservation .nav__btn a {
    margin: 5px auto 0;
    border-radius: 20px 0px;
    padding: 4px 0px 15px;
    text-align: center;
}

.nav__contact {
    margin-top: 34px;
}

.nav__detail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.nav__contact .nav__btn a {
    width: 151px;
    padding: 4px 0px 15px;
    border-radius: 20px 0px;
    text-align: center;
}

.nav__reservation .nav__btn a::after,
.nav__contact .nav__btn a::after {
    display: none;
}

.nav__txt {
    padding-top: 20px;
    font-family: "Klee One";
    font-size: 1.4rem;
    line-height: 1.42;
}

/* nav pc */
@media screen and (min-width: 769px) {
    .nav {
        width: 23.6%;
        /* max-width: 340px; */
        height: 100vh;
        padding: 34px 2.7% 40px;
        border-right: 1px solid var(--color--warmGray);
        position: relative;
        top: 100vh;
        left: 0;
        transform: translateY(0);
        opacity: 1;
    }

    .nav.fixed {
        top: 0;
        left: 0;
        position: fixed;
    }

    .nav__logo {
        width: 100%;
        text-align: left;
        white-space: nowrap;
    }

    .nav__btnClose {
        display: none;
    }

    .nav__item {
        margin-top: 32px;
    }

    /* .nav__topic:hover .nav__subTopic {
        color: var(--color--yomogiGray);
        display: block;
    } */

    .nav__wrap {
        bottom: 40px;
    }

    .nav__reservation .nav__btn a,
    .nav__contact .nav__btn a {
        margin: 10px auto 0;
        width: 260px;
        height: 32px;
        border-radius: 20px 0px;
        /* padding: 4px 0px 15px; */
        /* text-align: center; */
    }

    .nav__contact {
        margin-top: 32px;
    }

    .nav__detail {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .nav__txt {
        /* padding-top: 30px;
        line-height: 1.57; */
        display: none;
    }
}

/* pc 769px */

/* ====================
footer
==================== */
.footer {
    width: 100%;
    padding: 0 5.3% 40px;
}

.footer__imgPc {
    display: none;
}

.footer__nav {
    margin-top: 40px;
}

.footer__sitemap {
    display: grid;
    height: 101px;
    row-gap: 30px;
    column-gap: 36px;
    flex-shrink: 0;
    align-self: stretch;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer__link {
    font-family: "Klee One";
    font-size: 1.4rem;
    line-height: 3;
    white-space: nowrap;
}

.footer__shopName {
    margin-top: 100px;
    text-align: center;
    font-family: "Klee One";
    font-size: 1.6rem;
}

.footer__deco {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.footer__logo {
    /* margin: 20px auto 100px; */
    width: 335px;
    background-color: var(--color--whitePink);
}

.footer__logo img {
    width: 100%;
    mix-blend-mode: multiply;
}

.footer__name {
    line-height: 1.25;
    letter-spacing: 0.1em;
}

.spanFooterName {
    font-family: "Merienda";
    font-size: 1.6rem;
    margin-left: 5px;
    line-height: 1.25;
    letter-spacing: 0.1em;
}

.copy {
    text-align: center;
    font-family: Merienda;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}

.topBtn {
    position: fixed;
    right: 5.3%;
    bottom: 37px;
    z-index: 99;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        width: 76.4%;
        margin: 0 0 0 auto;
        padding: 0;
    }

    .footer__imgSp {
        display: none;
    }

    .footer__imgPc {
        display: block;
    }

    .footer__inner {
        margin-top: 0;
        padding: 40px 6.6% 0;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .footer__nav {
        margin-top: 20px;
    }

    .footer__shopName {
        margin-top: 0;
    }

    .copy {
        padding-bottom: 40px;
    }

    .topBtn {
        right: 4.4%;
        bottom: 60px;
    }

    /* pc 769px */
}