* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

html {
  font-size: 1.30208333333vw;
}

@keyframes body {
  0% {
    opacity: 0;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;
  width: 100%;
  animation: body 1.2s ease-in;
}

.wrapper {
  width: 90%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width:769px) {
  .wrapper {
    max-width: 641px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 64px 0;
}

.heading-text {
  text-align: center;
  margin-bottom: 64px;
}

.heading-text img {
  height: 24px;
}

/* mainここから */
main {
  height: 57.29166666666667vh;
  background-image: url("../image/menu-background.png");
  background-size: cover;
  background-position: center;
}

@media (max-width:769px) {
  main {
    background-image: url("../image/menu-mobile-background.png");
    height: 89.84375vh;
  }
}

.mobile-menu {
  display: none;
}

@media (max-width:769px) {
  .mobile-menu {
    display: block;
    position: relative;
    z-index: 3;
  }
}

input[type="checkbox"] {
  position: fixed;
  left: -50vw;
}

input[type="checkbox"]:checked~aside {
  right: 0;
}

input[type="checkbox"]:checked~.back {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.open {
  position: fixed;
  right: 5vw;
  top: 5vh;
}

.drawer-open {
  width: 10vw;
  max-width: 50px;
  max-height: 59px;
}

.main-menu {
  background-color: #EFEFEF;
  width: 60vw;
  max-width: 480px;
  height: 100vh;
  max-height: 1024px;
  position: fixed;
  right: -480px;
  transition: all 0.2s;
}

.aside-wrapper {
  width: 85%;
  max-width: 352px;
  margin: 0 auto;
}

.drawer {
  display: flex;
  justify-content: space-between;
  margin: 5vh 0;
}

.drawer-logo {
  width: 30vw;
  max-width: 200px;
}

.drawer-close {
  width: 10vw;
  max-width: 45px;
  max-height: 60px;
}

.drawer-list li {
  width: 30vw;
  max-width: 155px;
  max-height: 68px;
  margin: 0 auto;
  margin-bottom: clamp(16px, 3vh, 32px);
}

.drawer-list li img {
  width: 100%;
}

.drawer-img {
  width: 20vw;
  max-width: 141px;
  margin: 64px auto 0;
}

.drawer-img img {
  width: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  padding-top: 56px;
}

.main-logo {
  width: 36.71875vw;
  max-width: 376px;
}

@media(max-width:769px) {
  .main-logo {
    width: 50vw;
    max-width: 298px;
  }
}

.main-logo img {
  width: 100%;
}

@media(max-width:769px) {
  .global-nav {
    display: none;
  }
}

.nav-list {
  display: flex;
}

.list-item {
  font-size: clamp(10px, 2.4rem, 24px);
  font-weight: 400;
  margin-left: 32px;
}

.list-item a {
  color: #fff;
  transition: all 0.25s;
}

main .list-item a:hover {
  color: #082C42;
}

footer .list-item a:hover {
  opacity: 0.5;
}

/* mainここまで */

/* recommendここから */
#recommend {
  background-color: #E2E3E1;
  color: #000;
  font-weight: 400;
  z-index: 1;
}

.recommend-menu {
  display: flex;
  justify-content: space-between;
}

@media(max-width:769px) {
  .recommend-menu {
    flex-direction: column;
  }
}

.recommend-item {
  width: 46.875vw;
  max-width: 480px;
}

@media(max-width:769px) {
  .recommend-item {
    width: 100%;
    max-width: 641px;
  }
}

.coffee-item {
  margin-right: 24px;
}

@media(max-width:769px) {
  .coffee-item .menu-text {
    margin-bottom: 40px;
  }
}

.recommend-image {
  width: 40vw;
  max-width: 480px;
}

@media(max-width:769px) {
  .recommend-image {
    width: 100%;
    max-width: 641px;
  }
}

.menu-image {
  width: 100%;
}

.bottom-image {
  position: relative;
}

.top-image {
  position: absolute;
}

.coffee-text {
  width: 40vw;
  max-width: 216px;
  margin-left: 24px;
  transform: rotate(-20deg);
  top: -50px;
  left: -60px;
}

@media(max-width:769px) {
  .coffee-text {
    margin-left: 0;
    top: -10px;
    left: 0px;
  }
}

.cake-text {
  width: 30vw;
  max-width: 165px;
  margin-right: 24px;
  transform: rotate(-7deg);
  transform: translate(0, -100%);
  top: 98%;
  right: -70px;
}

@media(max-width:769px) {
  .cake-text {
    margin-right: 0;
    right: 0;
  }
}

@keyframes recommend {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.recommend-show dl {
  animation: recommend 1.2s ease-in-out forwards;
}

.recommend-item dl {
  opacity: 0;
}

.recommend-item dt {
  font-size: clamp(10px, 2.4rem, 24px);
  margin-top: 8px;
}

.price {
  font-size: clamp(10px, 2.4rem, 24px);
}

.price span {
  font-size: clamp(10px, 1.6rem, 16px);
}

.menu-text {
  font-size: clamp(10px, 1.8rem, 18px);
  margin-top: 8px;
}

/* recommendここまで */

/* menuここから */
#menu {
  background-color: #EFEFEF;
}

#menu .heading-text {
  margin-bottom: 36px;
}

small {
  display: block;
  text-align: right;
  font-size: clamp(10px, 1.4rem, 14px);
  font-weight: 400;
  margin-bottom: 8px;
}

.menu-list {
  display: flex;
  justify-content: space-between;
}

@media(max-width:769px) {
  .menu-list {
    flex-direction: column;
  }
}

@media(max-width:769px) {

  .food,
  .coffee {
    margin-bottom: 40px;
  }
}

.menu-heading {
  background-color: #E2E3E1;
  width: 45vw;
  max-width: 504px;
  padding: 14px 0;
  text-align: center;
  border: solid 1px #707070;
}

@media(max-width:769px) {
  .menu-heading {
    width: 100%;
    max-width: 641px;
    padding: 8px 0;
  }
}

.menu-heading:nth-child(odd) {
  margin-right: 16px;
}

.menu-heading img {
  height: 24px;
}

.table-list {
  width: 100%;
  max-width: 504px;
  padding: 0 24px;
  opacity: 0;
}

@media(max-width:769px) {
  .table-list {
    max-width: 641px;
  }
}

@keyframes menu {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.menu-show {
  animation: menu 1s linear forwards;
}

.table-list tr {
  display: flex;
  justify-content: space-between;
  font-size: clamp(10px, 1.8rem, 18px);
  font-weight: 400;
  margin-top: 22px;
}

@media(max-width:769px) {
  .table-list tr {
    font-size: clamp(16px, 2.4rem, 24px);
  }
}

.drink-text {
  margin-top: 64px;
}

/* menuここまで */

/* footerここから */
footer {
  background-color: #082C42;
  padding-top: 40px;
  padding-bottom: 32px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo {
  width: 36.71875vw;
  max-width: 380px;
}

@media(max-width:769px) {
  .footer-logo {
    width: 45vw;
  }
}

.footer-logo img {
  width: 100%;
}

.footer-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.sns-icon {
  display: flex;
  margin-bottom: 64px;
}

@media(max-width:769px) {
  .sns-icon {
    margin-bottom: 0;
  }

  .sns-icon img {
    width: 10vw;
    max-width: 64px;
  }
}

.sns-icon li {
  margin-left: 24px;
}

/* footerここまで */