@charset "UTF-8";
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5vw;
  background: linear-gradient(135deg, #e0a066 0%, #c47845 50%, #5c4033 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    height: 100px;
    padding: 0 30px;
  }
}
.header .site-title {
  font-size: 2.1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .header .site-title {
    font-size: 1rem;
  }
}
.header .nav {
  display: flex;
  justify-content: center;
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .header .nav {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(224, 160, 102, 0.6) 0%, rgba(196, 120, 69, 0.6) 50%, rgba(92, 64, 51, 0.6) 100%);
    width: 200px;
    height: 30vh;
    z-index: 200;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .header .nav.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
.header .nav .nav-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  margin-left: 40px;
  max-width: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .header .nav .nav-menu {
    flex-direction: column;
    gap: 20px;
    padding: 35px 20px;
    margin-left: 0;
  }
}
.header .nav .nav-menu .active {
  z-index: 200;
}
.header .nav .nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.header .nav .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #e0b28c;
  transition: width 0.3s ease;
}
.header .nav .nav-menu a:hover {
  color: #e0b28c;
}
.header .nav .nav-menu a:hover::after {
  width: 100%;
}
.header .nav .nav-menu-list {
  display: flex;
  justify-content: flex-start;
  padding: 0 120px 0 20px;
}
@media (max-width: 768px) {
  .header .nav .nav-menu-list {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }
}
.header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 300;
  }
}
.header .hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 4px);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -4px);
}

.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  pointer-events: auto;
}
.mask.active {
  display: block;
}

[id] {
  scroll-margin-top: 105px;
}
@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

.footer {
  background: linear-gradient(135deg, #e0a066 0%, #c47845 50%, #5c4033 100%);
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.footer .footer-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.footer .footer-sub {
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer .footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer .footer-sns a {
  display: inline-block;
  font-size: 1.8rem;
  color: #ffffff;
  transition: opacity 0.3s;
}
.footer .footer-sns a:hover {
  opacity: 0.7;
}
.footer .footer-sns img {
  width: 24px;
  height: 24px;
}
.footer .footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px auto;
  width: 80%;
}
.footer .footer-copy {
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  background: #ffffff;
  padding: 40px 20px 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .modal .modal-content {
    padding: 20px 15px !important;
    max-width: 90%;
    position: relative;
  }
}
.modal .modal-content .modal-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4b3621;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-title {
    font-size: 1.25rem;
  }
}
.modal .modal-content .modal-description {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-description {
    font-size: 0.95rem;
  }
}
.modal .modal-content .modal-ingredients {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #555;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-ingredients {
    font-size: 0.85rem;
  }
}
.modal .modal-content .modal-ingredients strong {
  display: block;
  margin-bottom: 5px;
  color: #333;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-ingredients strong {
    font-size: 0.9rem;
  }
}
.modal .modal-content .modal-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b46e3e;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-price {
    font-size: 1.25rem;
  }
}
.modal .modal-content .modal-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-buttons {
    flex-direction: column; /* ← スマホだと縦並びの方が押しやすい */
    align-items: center;
    gap: 10px;
  }
}
.modal .modal-content .modal-buttons .add-to-cart {
  background: linear-gradient(to right, #b46e3e, #f6e3cc);
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  min-width: 160px;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-buttons .add-to-cart {
    width: 80%;
    padding: 16px;
    font-size: 1.2rem;
  }
}
.modal .modal-content .modal-buttons .modal-close {
  background: none;
  border: 1px solid #ccc;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .modal .modal-content .modal-buttons .modal-close {
    width: auto;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

.products-page {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .products-page .wrapper {
    padding: 1rem;
  }
}

.products {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e0a066 0%, #c47845 50%, #5c4033 100%);
}
@media (max-width: 768px) {
  .products {
    padding: 80px 0 40px;
  }
}
.products .wrapper {
  text-align: center;
}
@media (max-width: 768px) {
  .products .wrapper {
    padding: 0 20px;
  }
}
.products .wrapper .section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .products .wrapper .section-title {
    font-size: 2rem;
  }
}
.products .wrapper .products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .products .wrapper .products-list {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
  }
}
.products .wrapper .products-list .products-card {
  width: calc(33.333% - 25px);
  background-color: rgba(255, 248, 240, 0.9);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .products .wrapper .products-list .products-card {
    width: 45%;
    padding: 0;
    box-sizing: border-box;
  }
}
.products .wrapper .products-list .products-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.products .wrapper .products-list .products-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.products .wrapper .products-list .products-card .name {
  margin: 10px 0 5px;
  font-size: 1.2rem; /* 少し大きく */
  font-weight: bold;
  color: #6b3e26; /* 文字を濃く */
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6); /* ほんのり影 */
}
@media (max-width: 768px) {
  .products .wrapper .products-list .products-card .name {
    font-size: 0.875rem;
  }
}
.products .wrapper .products-list .products-card .price {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #6b3e26; /* 文字を濃く */
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6); /* ほんのり影 */
}
@media (max-width: 768px) {
  .products .wrapper .products-list .products-card .price {
    font-size: 0.875rem;
  }
}

.products-page .wrapper .product-item .product-title {
  display: none;
}

.product-details {
  background-color: #f9e0bb;
  border: 1px solid #e0cfc2;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .product-details {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.product-details .modal-title {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #8b4513;
  margin-bottom: 1rem;
  border-left: 4px solid #d2691e;
  padding-left: 0.5rem;
  background: linear-gradient(to right, #fff7f0, #f9e4c8);
  border-radius: 6px;
}
@media (max-width: 768px) {
  .product-details .modal-title {
    font-size: 1.1rem;
  }
}
.product-details .modal-title:hover {
  background-color: #fce3bc;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.product-details .modal-description {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.product-details .modal-ingredients,
.product-details .modal-price {
  margin-bottom: 0.5rem;
  color: #444;
}
.product-details .modal-ingredients strong,
.product-details .modal-price strong {
  margin-right: 20px;
}

.product-details .add-to-cart {
  display: inline-block;
  background-color: #d2691e;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-details .add-to-cart:hover {
  background-color: #b25512;
}
@media (max-width: 768px) {
  .product-details .add-to-cart {
    width: 100%;
    font-size: 0.95rem;
  }
}

.product-item {
  background: #fcf4e0;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .product-info {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.product-thumb {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .product-thumb {
    width: 100%;
    max-width: 300px;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.product-thumb img {
  max-width: 200px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .product-thumb img {
    width: 100%;
    height: auto;
  }
}

.product-text {
  flex: 1;
}
@media (max-width: 768px) {
  .product-text {
    text-align: center;
    width: 100%;
  }
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-description {
  margin-bottom: 1rem;
  color: #555;
}

.product-details p {
  margin-bottom: 0.4rem;
}

.remove-item {
  margin-left: 10px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  background: linear-gradient(135deg, #e0a066 0%, #c47845 50%, #5c4033 100%);
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

h2, .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.25rem;
  margin-top: 80px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  h2, .section-title {
    font-size: 1.25rem;
    margin-top: 0;
    margin-left: 5px;
    margin-bottom: 20px;
  }
}

.section-line {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  margin: 0 auto 40px auto;
}

.cart-button {
  position: fixed;
  top: 170px;
  right: 20px;
  z-index: 999;
  background: #f4c784;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cart-button {
    top: 120px;
  }
}

.cart-list {
  position: fixed;
  top: 210px;
  right: 20px;
  background: #ecdbb3;
  border: 1px solid #ccc;
  padding: 1rem;
  width: 250px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 999;
  display: none;
  font-size: 0.875rem;
  color: #333; /* ← 文字色を暗くする！ */
  font-weight: bold;
}
@media (max-width: 768px) {
  .cart-list {
    top: 160px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 550px;
  padding-top: 100px;
}
.hero .hero-swiper {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .hero .hero-swiper {
    height: 450px;
  }
}
.hero .hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .section-title {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero .section-title {
    font-size: 1.4rem;
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(92, 64, 51, 0.5);
  z-index: 1;
}

.about {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about {
    padding: 30px 0;
  }
}
.about .wrapper {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about .wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}
.about .wrapper .section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about .wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.about .wrapper .text {
  font-size: 1.875rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .about .wrapper .text {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left;
  }
  .about .wrapper .text .sp {
    display: none;
  }
}

.access {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .access {
    padding: 30px 0;
  }
}
.access .wrapper {
  text-align: center;
}
.access .wrapper .section-title {
  font-size: 3rem;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .access .wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.access .wrapper .access-content {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .access .wrapper .access-content {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    gap: 30px;
  }
}
.access .wrapper .access-content .map {
  flex: 0 0 500px;
  max-width: 900px;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .access .wrapper .access-content .map {
    max-width: 90%;
    flex: none;
  }
}
.access .wrapper .access-content .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.access .wrapper .access-content dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .access .wrapper .access-content dl {
    width: 90%;
    margin-top: 20px;
  }
}
.access .wrapper .access-content dl dt {
  width: 25%;
  font-weight: bold;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .access .wrapper .access-content dl dt {
    font-size: 1rem;
  }
}
.access .wrapper .access-content dl dd {
  width: 75%;
  margin: 10px 0 0 0;
  text-align: left;
}
@media (max-width: 768px) {
  .access .wrapper .access-content dl dd {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
