@charset "utf-8";
/* Copyright 2017 FSFIELD All Rights Reserved. */

:root {
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
  --primary-color: #4CAF50;
  --wood: #8A6652;
  --muted: #666;
  --accent: #FFD700;
  --grass: #6BBE92;
  --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
  --container-max: 1200px;
}

img {
  max-width: 100%;
  height: auto;
}
a {
  display: block;
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--linkhover-color);
}

.poster {
  margin: 0;
  padding: 0;
  width: 100%;
}

.swap-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ユーティリティ */
.text-muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.shadow-soft {
  box-shadow: var(--card-shadow);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

section {
  margin: 2rem 0;
  padding: 3rem 0;
}
.gray-back {
  background-color: var(--back-color);
}
/* section-title */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 1.5rem;  
    margin-top: 3rem; 
}
.section-title a {
  color: var(--eat-green);
}
.section-title h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--wood);
}

.badge {
  background: var(--accent);
  color: var(--wood);
  margin-top: 20px;    
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(138,102,82,0.06);
}

/* block-txt */
.block-txt {
  background-color: #E98F41!important;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

/* shop card */
.shop {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,255,255,0.9));
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(138,102,82,0.04);
  overflow: hidden;
}
.shop.reverse {
  flex-direction: row-reverse;
}

/* photo */
.photo {
  flex: 0 0 46%;
  max-width: 46%;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 16px rgba(22,20,18,0.06);
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1), filter .3s;
  filter: contrast(1.04) saturate(1.06);
}
.shop:hover .photo img {
  transform: scale(1.04);
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  pointer-events: none;
}

/* info */
.info {
  flex: 1;
  min-width: 220px;
  padding: 12px 10px;
}
.info h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--wood);
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon {
  width: 36px;
  height: 36px;
  background: var(--grass);
  color: #fff;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(161,208,198,0.12);
}
.info p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  word-break: break-word;
  text-align: left;
}

/* meta */
.meta {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grass);
  display: inline-block;
}

/* responsive */
@media (max-width: 640px) {
  .shop,
  .shop.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .photo,
  .info {
    max-width: 100%;
    width: 100%;
  }

  .info {
    min-width: auto;
    padding: 16px;
  }

  .info h3 {
    justify-content: center;
  }

  .info p {
    text-align: center;
  }
}
.photo-group {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: nowrap; /* 横並びを維持 */
}
.photo-group img {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 1rem 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
}
.product-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--wood);
}
.product-card p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* スマホ対応 */
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  overflow: hidden;
}

.badge-mark-gold {
  position: absolute;
  top: 3px;
  right: 2px;
  background: rgb(212, 180, 74); /* ゴールドカラー */
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 7px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-mark-silver {
  position: absolute;
  top: 3px;
  right: 2px;
    background: #b0afb1; /* シルバー */
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 7px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}