@charset "UTF-8";

.lunch-description {
  max-width: 900px;
  margin: 35px auto 55px;
  padding: 24px 50px;
  background: rgba(245, 242, 238, 0.6);
  border-left: 3px solid rgba(184, 134, 11, 0.6);
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lunch-description p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(31, 31, 31, 0.72);
  margin: 0;
  padding: 5px 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.lunch-description p.item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(31, 31, 31, 0.82);
}

.lunch-description p.item span.label {
  font-weight: 600;
  color: rgba(184, 134, 11, 0.8);
  margin-right: 4px;
}

.lunch-description p.note {
  font-size: 13px;
  color: rgba(31, 31, 31, 0.65);
  font-weight: 400;
  padding-top: 10px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.lunch-description p:first-child {
  padding-top: 0;
  border-bottom: none;
}

.lunch-description p:last-child {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .lunch-description {
    margin: 25px 20px 40px;
    padding: 18px 25px;
  }
  
  .lunch-description p {
    font-size: 13px;
  }
}

.tab-list {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 40px;
}
.tab-list li {
  width: 100%;
  max-width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 1px rgba(31, 31, 31, 0.3);
  border-left: solid 1px rgba(31, 31, 31, 0.3);
  border-right: solid 1px rgba(31, 31, 31, 0.3);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 14px;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.tab-list li:last-child {
  margin-right: 0;
}
.tab-list li:hover {
  background-color: rgba(31, 31, 31, 0.85);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.tab-list li.active {
  background-color: rgba(31, 31, 31, 0.9);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.products-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 120px;
  display: none;
}
.products-list.active {
  display: grid;
}
.products-list li {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.products-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.products-list li img {
  transition: all 0.4s ease;
}

/* 7番目以降の牡蠣料理は文章ベース表示 */
.products-list.oyster li:nth-child(n+7) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,248,244,0.98) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 12px;
  grid-column: 1 / -1;
}

.products-list.oyster li:nth-child(n+7) img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.products-list.oyster li:nth-child(n+7) .info {
  position: static;
  display: block;
  background: transparent;
  color: #2a2520;
  opacity: 1;
  width: auto;
  text-align: left;
}

.products-list.oyster li:nth-child(n+7) .info .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a2520;
}

.products-list.oyster li:nth-child(n+7) .info .namesmall {
  font-size: 13px;
  color: #5a5550;
  margin-bottom: 10px;
  line-height: 1.6;
}

.products-list.oyster li:nth-child(n+7) .info .price {
  font-size: 14px;
  font-weight: 600;
  color: #8b6914;
  margin-bottom: 4px;
}

.products-list.oyster li:nth-child(n+7) .info .pricesmall {
  font-size: 12px;
  color: #7a6f65;
  margin-bottom: 6px;
}

/* 冷菜・温菜は牡蠣料理7個目以降と同じレイアウトに統一 */
.products-list.appetizer li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,248,244,0.98) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 12px;
  grid-column: 1 / -1;
}

.products-list.appetizer li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.products-list.appetizer li .info {
  position: static;
  display: block;
  background: transparent;
  color: #2a2520;
  opacity: 1;
  width: auto;
  text-align: left;
}

.products-list.appetizer li .info .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a2520;
}

.products-list.appetizer li .info .namesmall {
  font-size: 13px;
  color: #5a5550;
  margin-bottom: 10px;
  line-height: 1.6;
}

.products-list.appetizer li .info .price {
  font-size: 14px;
  font-weight: 600;
  color: #8b6914;
  margin-bottom: 4px;
}

.products-list.appetizer li .info .pricesmall {
  font-size: 12px;
  color: #7a6f65;
  margin-bottom: 6px;
}

.products-list li:hover img {
  transform: scale(1.05);
}
.products-list li .info {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
  text-align: center; /* 改行しても中央揃え */
}
.products-list li:hover .info {
  opacity: 1;
}
.products-list li .info .name {
  font-size: 18px;
  margin-bottom: 5px;
}
.products-list li .info .namesmall {
  font-size: 10px;
  margin-bottom: 0px;
}
.products-list li .info .price {
  font-size: 14px;
}
.products-list li .info .pricesmall {
  font-size: 10px;
  margin-bottom: 0px;
}

/*-------------------------------------------
Drink Section
-------------------------------------------*/
#drink {
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(244,240,232,0.98) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
#drink.drink-panel {
  display: none;
}
#drink.drink-panel.active {
  display: block;
}
#drink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(200,180,140,0.20), transparent 50%),
    radial-gradient(circle at 85% 10%, rgba(170,150,110,0.18), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(160,140,90,0.15), transparent 55%),
    radial-gradient(circle at 95% 85%, rgba(184,134,11,0.12), transparent 40%),
    radial-gradient(circle at 5% 70%, rgba(200,170,100,0.10), transparent 45%),
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(210,190,150,0.08), transparent 60%);
  pointer-events: none;
}
#drink .wrapper {
  position: relative;
  z-index: 1;
}
#drink .drink-head {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 20px;
}
#drink .drink-head .eyebrow {
  font-size: 13px;
  letter-spacing: 0.26em;
  color: #9a8354;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
#drink .drink-head .title {
  font-size: 44px;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  color: #2a2520;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
#drink .drink-head .lead {
  font-size: 15px;
  line-height: 2.1;
  color: #4a4540;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}
#drink .drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 0 20px;
}
#drink .drink-card {
  background: 
    linear-gradient(155deg, 
      rgba(255,255,255,0.97) 0%, 
      rgba(252,249,243,0.98) 45%, 
      rgba(248,244,236,0.96) 100%);
  border: 2px solid rgba(160, 140, 90, 0.28);
  border-radius: 26px;
  padding: 42px 36px 38px;
  box-shadow: 
    0 12px 48px rgba(0,0,0,0.10),
    0 6px 20px rgba(160,140,90,0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#drink .drink-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(160, 140, 90, 0.16);
  border-radius: 18px;
  pointer-events: none;
}
#drink .drink-card::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 250%;
  height: 250%;
  background: radial-gradient(circle, rgba(200,180,140,0.10) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#drink .drink-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 24px 68px rgba(0,0,0,0.16),
    0 12px 32px rgba(160,140,90,0.20),
    inset 0 1px 0 rgba(255,255,255,1);
  border-color: rgba(160, 140, 90, 0.45);
}
#drink .drink-card:hover::after {
  opacity: 1;
}
#drink .drink-card .category {
  display: inline-block;
  padding: 13px 22px;
  margin: -10px 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(160,140,90,0.24), rgba(160,140,90,0.14));
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b5a35;
  font-weight: 700;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 3px 10px rgba(160,140,90,0.22);
  position: relative;
  z-index: 1;
}
#drink .drink-card .item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  transition: all 0.3s ease;
}
#drink .drink-card .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, rgba(160, 140, 90, 0.90), rgba(140, 120, 70, 0.75));
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(160, 140, 90, 0.18);
  transition: all 0.35s ease;
}
#drink .drink-card .item:hover {
  padding-left: 26px;
}
#drink .drink-card .item:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(160, 140, 90, 0.28);
}
#drink .drink-card .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#drink .drink-card .name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  color: #2a2520;
  line-height: 1.6;
}
#drink .drink-card .note {
  font-size: 13px;
  line-height: 2.0;
  color: #3f3a35;
  letter-spacing: 0.03em;
}

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
  #drink .drink-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  #drink .drink-card {
    padding: 38px 32px 34px;
  }
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .tab-list {
    margin-bottom: 10px;
  }
  .tab-list li {
    font-size: 10px;
    margin-right: 5px;
  }
  .products-list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
  }
  #drink {
    padding: 70px 0 50px;
  }
  #drink .drink-head {
    margin-bottom: 50px;
  }
  #drink .drink-head .title {
    font-size: 34px;
    letter-spacing: 0.18em;
  }
  #drink .drink-head .lead {
    font-size: 14px;
  }
  #drink .drink-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 15px;
  }
  #drink .drink-card {
    padding: 34px 26px 30px;
    border-radius: 22px;
  }
  #drink .drink-card .category {
    font-size: 13px;
    padding: 11px 18px;
  }
  #drink .drink-card .item {
    padding-left: 20px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  #drink .drink-card .name {
    font-size: 15px;
  }
  #drink .drink-card .note {
    font-size: 12px;
  }
}