/* style.css - PC（共通）スタイル */

body {
  margin: 0;
  padding-bottom: 60px;
  font-family: 'Kaisei Tokumin', serif;
  background-color: #fff;
  font-size: 18px;
}

main {
  /*padding-top: 210px;*/
  max-width: 1000px;
  margin: 30px auto 0 auto;
  /*
  padding: 20px;
*/
  
/*margin-top: 100px;*/

}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  transition: transform 0.3s ease;
}

.header-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

nav.global-nav {
  margin-top: 10px;
}

nav.global-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

nav.global-nav a:hover {
  color: #c00;
}

.menu-nav {
  min-height: 0px;
  font-size: 20px;
}

.menu-nav a {
  text-decoration: none;
  color: black;
}

.menu-nav a:hover {
  color: #ff6600;
}

.hide-nav {
  transform: translateY(-100%);
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 10px auto;
  padding: 5px;
}

.menu-card {
  width: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  scroll-margin-top: 210px;
}

.menu-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

.menu-image img {
  max-width: 100px;
  height: auto;
  display: block;
}

.menu-text {
  padding: 4px 8px;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

.menu-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.menu-price {
  font-size: 16px;
  color: #000;
}

.price-red {
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  margin: 0 4px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fffbe6;
  border-top: 1px solid #ccc;
  justify-content: space-around;
  padding: 6px 0;
  font-size: 8px;
  z-index: 1000;
  display: none;
}

.bottom-nav a {
  text-align: center;
  color: #444;
  text-decoration: none;
  flex-grow: 1;
  font-weight: bold;
}

.bottom-nav a span {
  display: block;
  font-size: 20px;
}


body {
  margin: 0;
  font-family: 'Kaisei Tokumin', serif;
  background: #fff;
  font-size: 18px;
}
/*
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}
*/
main.main-area {
  margin-top: 120px;
  padding: 20px 20px 60px;
}

.menu-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #fdf6e3;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 999;
}

.menu-nav button {
  font-size: 16px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.menu-card {
  width: 45%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: auto;
}

.menu-text {
  padding: 10px;
}

.menu-title {
  font-size: 20px;
  font-weight: bold;
}

.menu-title2 {
  font-size: 16px;
}

.menu-price {
  font-size: 16px;
  margin-top: 5px;
}

.price-red {
  color: red;
  font-weight: bold;
  margin-right: 10px;
}



@media screen and (max-width: 768px) {
/* style-mobile.css - モバイル専用スタイル */

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    text-align: center;
  }

  header img {
    max-width: 60%;
  }

  nav.global-nav {
    margin-top: 6px;
  }

  nav.global-nav a {
    font-size: 14px;
    margin: 4px 6px;
  }

  .menu-nav {
    font-size: 16px;
    padding: 6px;
    gap: 12px;
  }

  .menu-nav a {
    font-size: 16px;
    margin: 0 6px;
  }

  .menu-card {
    flex: 0 1 calc(48% - 12px);
    max-width: calc(48% - 12px);
    font-size: 16px;
  }

  .menu-title {
    font-size: 16px;
  }

  .menu-price,
  .price-red {
    font-size: 14px;
  }

  .menu-image img {
    max-width: 100px;
    height: auto;
  }

  .bottom-nav {
    display: flex;
  }

  .bottom-nav a i {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
    color: #444;
  }
}


@media only screen and (max-width: 768px) {
  .menu-card {
    width: 90%;
  }
}

}
