@charset "UTF-8";
:root {
    /* font */
    --font-gothic : fot-udkakugo-large-pr6n, sans-serif;
    --font--en : chaparral-pro-caption, serif;
    --font-deco : beloved-script, sans-serif;
    /* color */
    --color-coffee : #473730;
    --color-cafe-latte : #91785D;
    --color-organic : #9D9171;
    --color-pistacio : #869D7A;
    --color-rasberry : #AB4E68;
}
html {
    scroll-behavior: smooth;
}
html,body {
    width: 100%;
    height: 100vh;
}
.header {
    width: 100%;
    padding: 2vw;
    display: flex;
    position: fixed;
    z-index: 9999;
}
.primary-logo {
    width: 7.8vw;
    min-width: 65px;
}
.primary-logo__wrapper {
    z-index: +1;
}
.humburger-menu {
    width: 2.8vw;
    min-width: 30px;
    display: flex;
    flex-direction: column;
    gap: 1vb;
    margin-left: auto;
    margin-right: 5vw;
    z-index: +1;
    cursor: pointer;
}
.humburger-menu__menu {
    width: 100%;
}
.humburger-menu--line-wrapper {
    position: relative;
    width: 2.8vw;
    min-width: 30px;
    max-width: 55px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 5% 0;
}
.humburger-menu__line--top {
    transition: all 0.5s ease;
}
.humburger-menu__line--middle {
    transform: translate(0, 100%);
}
.humburger-menu__line--bottom {
    transform: translate(0, 200%);
    transition: all 0.5s ease;
}
.humburger-menu__line {
    width: 100%;
    height: 15%;
    background: var(--color-pistacio);
    border-radius: 9999px;
}
.humburger-menu__line--top.open {
    transform: translateY(250%) rotate(-45deg);
    background: #FFF;
}
.humburger-menu__line--middle.open {
    opacity: 0;
}
.humburger-menu__line--bottom.open {
    transform: translateY(50%) rotate(45deg);
    background: #fff;
}
/* Global Navigation */
.gnav__menu {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: var(--color-organic);
    margin: -2vw;
    align-items: center;
    justify-content: center;
}
.gnav__menu.open {
    display: flex;
}
.gnav__link-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4vw;
    text-align: center;
    font-family: var(--font--en);
    font-weight: 700;
    font-size: 48px;
    color: var(--color-coffee);
}
.gnav__social-link {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.haeder__instagram-link--color, .header__x-link--color {
    fill: var(--color-coffee);
}
/* scroll */
.scroll {
    position: fixed;
    right: 1.5vw;
    bottom: 25vh;
    width: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-animation: bounce 2s ease-in-out  infinite normal;
            animation: bounce 2s ease-in-out  infinite normal;
    z-index: +1;
}
.scroll__scroll-letter {
    font-family: var(--font--en);
    color: #FFF;
    font-size:clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
    font-weight: 700;
    transform: translate(-5px,-50px) rotate(90deg);
}
.scroll__arrow {
    width: 70%;
}
@-webkit-keyframes bounce {
    0% {
        transform: translate(0,0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 50px);
        opacity: 0;
    }
}
@keyframes bounce {
    0% {
        transform: translate(0,0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 50px);
        opacity: 0;
    }
}
.opening-hours {
    position: fixed;
    right: 2vw;
    bottom: 10px;
    width: 35vw;
    min-width: 200px;
    max-width: 300px;
    z-index: +1;
    transition: all 0.5s ease-in-out;
}
.opening-hours__sofa {
    width: 100%;
}
.opening-hours__text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    font-family: var(--font--en);
    font-weight: 700;
    color: #FFF;
}
.opening-hours__title-jp {
    display: block;
    margin-bottom: 13px;
    font-family: var(--font-gothic);
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    font-weight: 600;
}
.opening-hours__title-en {
    display: block;
    margin-bottom: 20px;
    font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
}
.opening-hours__content {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.313rem, 1.063rem + 1.25vw, 2rem);
}
.opening-hours__last-order {
    font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
}
/* first view */
.firstview {
    width: 100%;
    height: 100vh;
    background: var(--color-organic);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: -1;
}
.firstview__slide-items {
    width: 90%;
    height: 100vh;
}
.firstview__espresso-machine,.firstview__shop-interior,.firstview__coffee-drip {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
}
.firstview__shop-sign {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top left;
       object-position: top left;
}
.firstview__decor-text {
    position: absolute;
    top: 10%;
    left: 11%;
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: clamp(3.125rem, 0.658rem + 9.87vw, 12.5rem);
    color: #CDC2B6;
    transform: rotate(-10deg);
    mix-blend-mode: hard-light;
}
.firstview__copy {
    position: absolute;
    right: 10%;
    top: 12%;
}
@media screen and (orientation: landscape) {
    .firstview__copy {
        height: 54vh;
    }
}
@media screen and (orientation: portrait) {
    .firstview__copy {
        height: 35vh;
    }
}
.news {
    position: absolute;
    left: 10%;
    bottom: 40px;
    display: flex;
    gap: 1rem;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 25px;
    width: min(42%,480px);
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0px 0px 10px var(--color-coffee);
    border-radius: 10px;
    font-family: var(--font--en);
}
.news__titile {
    font-style: italic;
    font-weight: 600;
    color: var(--color-coffee);
}
.news__date {
    font-style: italic;
    font-weight: 600;
    color: var(--color-rasberry);
}
.news__content {
    font-family: var(--font-gothic);
    font-weight: 500;
    color: var(--color-coffee);
}
@media screen and (max-width:450px) {
    .news {
        width: 80%;
        bottom: 25vh;
    }
}
/* about */
.about {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cafe-latte);
}
.about__img {
    position: absolute;
    right: 0;
    width: 80%;
    height: 100%;
    overflow: hidden;
}
.about__shop-interior {
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform-origin: center;
}
@media screen and (max-width:450px) {
    .about__img {
        width: 100%;
        height: 80vh;
        overflow: hidden;
    }
    .about__shop-interior {
        top: 0;
        overflow: hidden;
        -o-object-position: top 0% right 30%;
           object-position: top 0% right 30%;
    }
}
.scale-image.is-animated {
    -webkit-animation: fadein 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
            animation: fadein 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@-webkit-keyframes fadein {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}
@keyframes fadein {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}
.about__heading {
    position: absolute;
    top: 19vh;
    left: 17.8vw;
    font-family: var(--font--en);
    font-weight: 600;
    font-size: clamp(2rem,5.76vw,3rem);
    color: var(--color-coffee);
    text-shadow: 0px 0px 8px #FFF;
}
@media screen and (max-width:450px) {
    .about__heading {
        top: 7vh;
    }
}
.about__copy {
    position: absolute;
    height: min(60vh,648px);
    left: 14vw;
    top: calc(19vh + 3rem);
}
@media screen and (max-width:450px) {
    .about__copy {
        top: calc(7vh + 3rem);
    }
}
.about__text-wrapper {
    position: absolute;
    right: 0;
    bottom: 4vh;
    width: 85%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-left: 7.8vw;
    padding-right: auto;
    padding-top: 1.7vw;
    padding-bottom: 1.7vw;
    -webkit-backdrop-filter: blur(3px) brightness(115%);
            backdrop-filter: blur(3px) brightness(115%);
    background-color: rgba(134, 157, 122, 0.5);
}
@media screen and (max-width:450px) {
    .about__text-wrapper {
        width: 90%;
        right: 5%;
        bottom: 9vh;
        padding-left: 16px;
        padding-right: 16px;
    }
}
.about__text {
    -webkit-clip-path: inset(0 100% 0 0 );
            clip-path: inset(0 100% 0 0 );
    font-family: var(--font-gothic);
    font-size: clamp(0.813rem,1.9vw,1rem);
    font-weight: 400;
    line-height: 1.5;
    color: #FFF;
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: -webkit-clip-path;
    transition-property: clip-path;
    transition-property: clip-path, -webkit-clip-path;
}
.about__text.is-animated {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
}
.index-menu {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-organic);
}
@media screen and (orientation: landscape) and (max-height:450px) {
    .index-menu {
        height: 150vh;
    }
}
.menu-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-coffee);
}
.menu-title--index {
    top: 5vh;
    position: absolute;
}
@media screen and (orientation: landscape) and (max-height:450px){
    .menu-title {
        flex-direction: row;
        justify-content: center;
    }
}
.menu-title__heading {
    font-family: var(--font--en);
    font-weight: 600;
    font-size: clamp(2rem,4.44vh,3rem);
    margin-bottom: 0.8rem;
}
.menu-title__text {
    font-family: var(--font-gothic);
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(0.875rem,1.75vh,1.5rem);
    margin-bottom: clamp(16px,2.96vh,32px);
}
.index-menu__buttun-link {
    display: block;
    padding: 16px 50px;
    font-family: var(--font-gothic);
    font-weight: 500;
    color: #FFF;
    font-size: clamp(16px,2.5vw,24px);
    background-color: var(--color-rasberry);
    border: solid 1px #FFF;
    border-radius: 9999px;
}
@media screen and (max-width:450px) {
    .index-menu__buttun-link {
        padding: 16px 50px;
    }
}
.index-menu__decor-text {
    position: absolute;
    display: block;
    width: 100%;
    top: 50%;
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: clamp(75px,12vw,200px);
    text-align: center;
    color: var(--color-cafe-latte);
}
.special-menu__wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
@media screen and (orientation: landscape) {
    .special-menu__wrapper {
        flex-direction: row;
    }
}
@media screen and (orientation: portrait) {
    .special-menu__wrapper {
        flex-direction: column;
        justify-content: center;
    }
}
.special-menu__inner-wrapper {
    display: flex;
    gap: 10px;
}
.special-menu__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.special-menu__content.is-animated {
    -webkit-animation: fadeup 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
            animation: fadeup 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
}
@-webkit-keyframes fadeup {
    0% {
    transform: translateY(30px);
    opacity: 0;
}
80% {
    opacity: 1;
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes fadeup {
    0% {
    transform: translateY(30px);
    opacity: 0;
}
80% {
    opacity: 1;
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@media screen and (orientation: portrait) {
    .special-menu__content--first {
        flex-direction: row;
    }
    .special-menu--bottom {
        margin-top: -10%;
    }
}
@media screen and (orientation: landscape) {
    .special-menu__img {
        width: min(26vw, 40vh);
    }
}
@media screen and (orientation: portrait) {
    .special-menu__img{
        width: 25vh;
    }
}
@media screen and (max-width:450px) {
    .special-menu__img{
        width: 40vw;
    }
}
.index-menu-item {
    position: relative;
    top: -15%;
    display: flex;
    flex-direction: column;
    width: min(28vw, 320px);
    font-family: var(--font-gothic);
    background-color: rgba(255,255,255,0.5);
    border: 1px solid var(--color-pistacio);
    border-radius: 10px;
    padding: 1.5vh 1.5vh calc(1.5vh + 1em);
}
@media screen and (orientation: portrait) {
    .index-menu-item {
        width: 40vw;
    }
    .index-menu-item--side {
        top: 18%;
    }
}
@media screen and (max-width:450px) {
    .index-menu-item{
        padding: 1vh 1vh calc(1vh + 1em);
    }
}
.index-menu-item__category {
    position: absolute;
    top: -0.7em;
    font-family: var(--font-deco);
    font-weight: 700;
    font-size: clamp(32px, 4.8vw, 48px);
    color: var(--color-pistacio);
    text-shadow: 0px 0px 3px var(--color-coffee);
}
.index-menu-item__item-name {
    font-weight: 600;
    font-size: min(16px,3.05vw);
    color: var(--color-coffee);
}
.index-menu-item__description {
    font-weight: 400;
    font-size: min(14px,2.54vw);
    line-height: 1.5;
    color: var(--color-cafe-latte);
}
.index-menu-item__price {
    position: absolute;
    right: 1.5vh;
    bottom: 1.5vh;
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-left: auto;
    font-weight: 700;
    font-size: min(24px,4.07vw);
    color: var(--color-coffee);
}
@media screen and (max-width:450px) {
    .index-menu-item__price {
        right: 1vh;
        bottom: 1vh;
    }
}
.index-menu-item__price-yen {
    font-size: 0.667em;
}
.set-menu {
    right: 10%;
    width: 60vw;
    border: 1px solid #FFF;
    border-radius: 10px;
    padding: 2vh;
    font-family: var(--font-gothic);
    line-height: 1.5;
    color: #FFF;
}
.set-menu--index {
    bottom: 4.5vh;
    position: absolute;
}
@media screen and (orientation: portrait) {
    .set-menu {
        width: 80%;
    }
}
@media screen and (max-width:450px) {
    .set-menu {
        padding: 1.5vh 1.5vh 0.5vh;
    }
    .set-menu--index {
        bottom: 3vh;
    }
}
.set-menu__catch {
    position: absolute;
    top: -0.8em;
    font-family: var(--font-deco);
    font-size: clamp(32px, 5.5vw, 64px);
    color: var(--color-rasberry);
}
.set-menu__title {
    font-weight: 700;
    font-size: clamp(14px, 2vh, 24px);
}
.set-menu__inner-wrapper {
    display: flex;
    gap: 10px;
    font-size: clamp(12px, 1.68vw, 16px);
    align-items: stretch;
}
@media screen and (max-width:450px) {
    .set-menu__inner-wrapper {
        flex-direction: column;
        gap: 0;
    }
}
.set-menu__list {
    display: flex;
    gap: 10px;
    font-weight: 400;
    flex-grow: 3;
}
.set-menu__price-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
}
@media screen and (max-width:450px) {
    .set-menu__price-wrapper {
        flex-direction: row;
        justify-content: flex-end;
    }
}
.set-menu__price-description {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    font-weight: 600;
}
.set-menu__price-detail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: baseline;
    font-size: 2em;
    font-weight: 700;
}
.set-menu__plus {
    transform: translateY(-5%);
}
.set-menu__yen {
    font-size: 0.75em;
}
.info {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.info-background-img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (orientation: landscape) {
    .info-background-img {
        -o-object-position: top;
           object-position: top;
    }
}
@media screen and (max-width: 450px) {
    .info-background-img {
        -o-object-position: 30%;
           object-position: 30%;
    }
}
.info-content__outer-wrapper {
    position: absolute;
    background-color: var(--color-organic);
    border-radius: 25px;
}
@media screen and (orientation: landscape) {
    .info-content__outer-wrapper {
        width: 30%;
        height: 70%;
        top: 50%;
        transform: translateY(-45%);
        right: 10%;
    }
}
@media screen and (orientation: portrait) {
    .info-content__outer-wrapper {
        width: 60%;
        height: 40%;
        right: 10%;
        bottom: 2.5%;
    }
}
@media screen and (max-width: 450px) {
    .info-content__outer-wrapper {
        width: 80%;
    }
}
.info-content__outer-wrapper-circle {
    position: absolute;
    width: max(50%, 180px);
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%,-30%);
    background-color: var(--color-organic);
    border-radius: 50%;
}
.info-content__inner-wrapper {
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--color-coffee);
    border-radius: 25px;
}
.info-content__inner-wrapper-circle {
    position: absolute;
    width: max(calc((100% + 20px) / 2 - 20px), 160px);
    aspect-ratio: 1;
    left: 50%;
    transform: translate(-50%,calc(-30% - 5px));
    background-color: var(--color-coffee);
    border-radius: 50%;
    z-index: -1;
}
.info-content__heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    align-items: center;
    width: 100%;
    transform: translateY(-100%);
}
.info-content__title-icon {
    width: 8%;
}
.info-content__heading {
    font-family: var(--font--en);
    font-style: italic;
    font-weight: 700;
    font-size: 1em;
    color: var(--color-organic);
}
.info-content__inner-line {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    position: relative;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    padding: 1vw 5%;
    border-left: solid 3px var(--color-organic);
    border-right: solid 3px var(--color-organic);
    color: var(--color-organic);
}
.info-content__adress-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    width: 100%;
}
@media screen and (max-width:450px) {
    .info-content__adress-wrapper {
        gap: 8px;
    }
}
.info-content__title {
    font-family: var(--font--en);
    font-weight: 700;
    font-size: 1.2em;
}
@media screen and (max-width:450px) {
    .info-content__title {
        font-size: 16px;
    }
}
.info-content__post {
    font-family: var(--font-gothic);
    font-weight: 600;
    font-size: 1rem;
}
@media screen and (max-width:450px) {
    .info-content__post {
        font-size: 12px;
    }
}
.info-content__adress {
    font-family: var(--font-gothic);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}
@media screen and (max-width:450px) {
    .info-content__adress {
        font-size: 12px;
    }
}
.info-content__map-link {
    display: block;
    width: 100%;
    height: 3em;
    font-family: var(--font--en);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 1em;
    border: solid 1px var(--color-organic);
    border-radius: 9999px;
    margin-top: 8px;
}
@media screen and (max-width:450px) {
    .info-content__map-link {
        height: 2.5em;
        padding: 0.5em;
        margin-top: 4px;
    }
}
.info-content__map-link--icon {
    fill: var(--color-organic);
}
.info-content__opening-hours-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font--en);
    font-weight: 700;
    font-size: 1rem;
}
@media screen and (max-width:450px) {
    .info-content__opening-hours-wrapper {
        font-size: 12px;
    }
}
@media screen and (max-width:450px) {
    .info-content__opening-hours-wrapper {
        gap: 4px;
    }
}
.info-content__opening-hours {
    font-size: 1.5em;
}
.info-content__reservation {
    display: block;
    width: 100%;
    height: 3em;
    font-family: var(--font-gothic);
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-align: center;
    padding: 1em;
    margin-top: 8px;
    background-color: var(--color-rasberry);
    border-radius: 9999px;
}
@media screen and (max-width:450px) {
    .info-content__reservation {
        height: 2.5em;
        padding: 0.5em;
        margin-top: 4px;
    }
}
.info-content__reservation--icon {
    fill: white;
}
.footer-img {
    width: 100%;
    height: 50vh;
    overflow: hidden;
}
.footer-img__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 50vh;
    background-color: var(--color-coffee);
    color: var(--color-organic);
    font-family: var(--font-gothic);
}
.page-top {
    position: relative;
    top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width:450px) {
    .page-top__arrow {
        width: 60px;
    }
}
.page-top__text {
    font-family: var(--font--en);
    font-weight: 700;
    font-size: 1rem;
}
@media screen and (max-width:450px) {
    .page-top__text {
        font-size: 0.75rem;
    }
}
.page-top__coffee-bean {
    width: 30px;
    margin-top: 8px;
}
.footer-menu-list {
    display: flex;
    gap: max(7vw,16px);
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: clamp(12px, 2.88vw, 18px);
}
.footer-info-wrapper {
    position: relative;
    bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 5vw;
}
@media screen and (max-width:450px) {
    .footer-info-wrapper {
        flex-direction: column;
        align-items: center;
        margin: 0 0;
        gap: 1vw;
        bottom: 8px;
        padding: 0 2vw;
    }
}
.footer__shop-info-wrapper {
    display: flex;
    gap: 1em;
}
.footer-logo {
    width: max(15.63vw, 155px);
}
.footer-info__inner-wrapper {
    font-size: clamp(12px, 1.9vw, 18px);
    line-height: 1.5;
    font-weight: 600;
}
.footer-info__opening-hours-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-family: var(--font--en);
    font-weight: 700;
}
.footer-info__opening-hours {
    font-size: clamp(18px, 3.5vw, 32px);
    margin-right: 1rem;
}
.footer-info__sns_and_copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-info__sns {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}
@media screen and (max-width:450px) {
    .footer-info__sns {
        margin-bottom: 15px;
        margin-top: 15px;
    }
}
.copyright {
    font-size: 0.75rem;
}
/* MENU PAGE */
.menu-page {
    position: relative;
    width: 100%;
    background-color: var(--color-organic);
}
.menu-title--menu-page {
    position: relative;
    padding-top: 5vh;
    margin-bottom: 1.5em;
}
.set-menu--menu-page {
    position: relative;
    margin-left: auto;
}
.whole-menu__wrapper {
    padding-bottom: 10vw;
}
/* Filter */
.filter__items [data-filter-key="TYPE1"],
.filter__items [data-filter-key="TYPE2"],
.filter__items [data-filter-key="TYPE3"],
.filter__items [data-filter-key="ALL"]{
    display:block;
}
.filter__items [data-filter-key="hide"] {
    display:none;
}
.menu-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto 1em;
    font-family: var(--font--en);
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--color-coffee);
    container-name: fliter-list;
    container-type: inline-size;
}
.menu-filter__title {
    font-size: 1.1em;
    margin-top: 1em;
}
.menu-filter__line {
    flex-grow: 1;
    height: 2px;
    border-radius: 99px;
    background-color: var(--color-coffee);
    margin-top: 1em;
}
.menu-filter__line::before {
    content: "";
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 0;
    transform: translateY(-40%);
    background-color: var(--color-coffee);
}
.menu-filter__list {
    display: flex;
    gap: 8px;
    margin-top: 1em;
}
.menu-filter__button {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    border: 0;
    overflow: hidden;
}
.menu-filter__button + label {
    padding: 8px 1em 6px;
    border: 2px solid var(--color-coffee);
    border-radius: 999px;
    transition: ease 0.5s;
}
@media screen and (max-width:450px) {
    .menu-filter__button + label {
        padding: 4px 0.5em 3px;
    }
}
.menu-filter__button:checked + label{
    color: white;
    border-color: white;
    background-color: var(--color-pistacio);
}
/* Flip */
.flip-card__wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 80%;
    margin: 0 auto;
    container-name: flipbox;
    container-type: inline-size;
}
.flip-card {
    width: calc((100% - 3 * 5px)/4);
    aspect-ratio: 1;
    perspective: 1000px;
    background-color: taransparent;
    container-name: flipcard;
    container-type: inline-size;
}
@container flipbox (width < 670px) {
    .flip-card {
      width : calc((100% - 2 * 5px)/3);
    }
}
@container flipbox (width < 550px) {
    .flip-card {
        width : calc((100% - 5px)/2);
    }
}
@container flipcard (width > 300px) {
    .flip-card__back {
        padding: 10%;
    }
}
@container flipcard (width < 150px) {
    .flip-card__item-name-en {
        font-size: 10px;
    }
}
.flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-card.active .flip-card__inner {
    transform: rotateY(-180deg);
}
.flip-card__front, .flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 5%;
}
.flip-card__front-img {
    width: 100%;
    border-radius: 5%;
    -o-object-fit: cover;
       object-fit: cover;
}
.flip-card__back {
    display: flex;
    flex-direction: column;
    transform: rotateY(-180deg);
    background-color: var(--color-cafe-latte);
    color : var(--color-coffee);
    box-sizing: border-box;
    padding-top: 5%;
    font-family: var(--font-gothic);
    font-size: clamp(12px, 2cqw, 16px);
    line-height: 1.5;
}
.flip-card__item-name-jp {
    text-align: center;
    font-weight: 700;
}
.flip-card__item-name-jp span {
    display: inline-block;
}
.flip-card__item-name-en {
    text-align: center;
    font-family: var(--font--en);
    font-weight: 700;
}
.flip-card__item-description {
    width: 90%;
    margin: 2% auto;
}
.flip-card__item-price {
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 2em;
    font-weight: 700;
}
.flip-card__item-yen {
    font-size: 0.75em;
} 
.tap-info {
    position: fixed;
    right: 5vw;
    bottom: 5vw;
    z-index: +5;
    display: flex;
    background-color: rgba(171, 78, 104, 0.8);
    border-radius: 15px;
    padding: 3px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    font-family: var(--font-gothic);
    font-weight: 500;
    font-size: clamp(12px, 1.9vw, 16px);
    color: white;
    transition: all ease 1s;
}
.tap-info__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid white;
    border-radius: 15px;
    padding: 8px;
}
.tap-info__img {
    height: min(90px, 15vw);
}