@charset "utf-8";

/*=====================
common
==================== */

html {
    font-size: 62.5%;
}

body {
    font-family:
    'Noto Sans JP', 
    Arial,
    sans-serif;
    font-style: normal;
    color: #434040;  
    background-color: #fff;
    line-height: 1.5;
}

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

.oleo-script-regular {
    font-family: "Oleo Script", system-ui;
    font-weight: 400;
    font-style: normal;
}
  
.oleo-script-bold {
    font-family: "Oleo Script", system-ui;
    font-weight: 700;
    font-style: normal;
}

.darumadrop-one-regular {
    font-family: "Darumadrop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* .nav初期表示 */
  
/* メニューが開いたとき */
.nav.open {
    opacity: 1; /* 不透明にする */
    pointer-events: auto; /* クリック可能にする */
    display: block;
}
  
/* バツ印に変わるハンバーガーボタン */
.nav_menu.active span:nth-child(2) {
    transform: rotate(45deg) translate(3px, 3px);
}
  
.nav_menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, -1px);
}

.nav {
    background-color:#F5F5F0;
    background-image: url(../images/nav.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 4% top;
    width: 100%;
    height: 100vh;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 15px 70px;
    transition: 0.4s;
    opacity: 0;
    display: none;
}

.nav_menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav_menu.active .btn0{
    opacity: 0;
}
.nav_menu.active .btn3{
    opacity: 0;
}
.nav_menu span {
    width: 31px;
    height: 2px;
    display: block;
    border-radius: 100vmax;
    transition: .3s;
}

.btn0 {
    line-height: 0;
}

.btn1 {
    background-color: #B22222;
}

.btn2 {
    background-color: #542727;
}

.btn3 {
    background-color: #FFC582;
}

.nav_list {
    margin-top: 130px;
    display: inline-block;
}

.nav_item {
    color: #434040;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 23px;
    text-align: left;
}

.stop-scrol{
    overflow: hidden;
}

/*=====================
header
==================== */

.header {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

.header_topic {
    font-family: Futura;
    font-size: 2.4rem;
    font-weight: 500;
}

.header_wrap {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 101;
}

/*=====================
main
==================== */

.menu {
    overflow: hidden;
}

.section_topic {
    font-size: 2.8rem;
    font-family: Futura;
    font-weight: 500;
    text-align: center;
}

.section_subtopic {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 85px;
}

.hamburger_list {
    text-align: center;
    margin-top: 60px;
}

.hamburger_list_item  {
    margin-bottom: 110px;
}

.recommend {
    color: #B22222;
    font-family: "Darumadrop One";
    font-size: 7.4vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.84px;
    transform: rotate(31deg);
    position: relative;
    top: 14px;
    right: -72px;
    display: inline-block;
}

.hamburger_list_item img {
    width: 60%;
    margin: 0 auto;
}

.menu_text_en {
    color: #434040;
    font-family: "Oleo Script";
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-top: 5px;
}

.menu_text_ja {
    color: #434040;
    font-size: 1.6rem;
    font-weight: 400;
}

.menu_title {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 30px;
}

.drink_menu {
    margin: 150px 0;
}

.driink_category {
    margin: 30px 91px;
}

.etc {
    text-align: right;
}

.driink_category li {
    font-size: 1.6rem;
    line-height: 2;
}

.lemon {
    margin-top: 60px;
    text-align: center;
}

.lemon img {
    width: 80%;
}

.lemon p {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 13px;
}

.smoothie_category {
    text-align: center;
}

.smoothi_content  {
    margin: 110px 0;
}

.smoothi_content img {
    width: 60%;
    margin: 0 auto;
}

.footer {
    padding: 20px;
    margin-top: 100px;
}

.footer_name p {
    color: #434040;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: solid 1px #4340408c;
    padding-bottom: 10px;
}

.pagetop_btn {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
}

.pagetop_btn img {
    width: 15%;
}

.copy{
    color: #D9D9D9;
    font-size: 1.5rem;
    padding-top: 50px;
}

@media screen and (min-width:769px) {
    .nav {
        background-position: right;
    }

    .menu {
        padding: 0 40px;
    }

    .hamburger_list_wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
    }

    .hamburger_list_wrap li {
        width: 33%;
    }

    .hamburger_list_item img {
        margin: 0 auto;
    }

    .recommend {
    font-size: 2.4rem;
    }

    .drink_menu {
        width: 100%;
    }

    .driink_category {
        display: flex;
        justify-content: space-around;  
    }

    .driink_category li {
        font-size: 1.8rem;
        line-height: 2;
    }

    .lemon {
        position: relative;
        bottom: 110px;
    }

    .smoothie_category {
        display: flex;
        align-items: flex-end;
    }

    .pagetop_btn {
        width: 50%;
    }

    .copy {
        color: #D9D9D9;
        font-size: 1.6rem;
        padding-top: 108px;
    }
}

/* ポップで美味しそうなアニメーション */
.pop-animation {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-animation.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.pop-animation:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.pop-animation img {
    transition: transform 0.3s ease;
}

.pop-animation:hover img {
    transform: scale(1.1);
}


/* 歴史ページのアニメーション */
.history-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.history-fade.active {
    opacity: 1;
    transform: translateY(0);
}