/* ==================================================
   SHOPページ専用スタイル
   ================================================== */
#shop-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    opacity: 0;
    transition: opacity 1s;
}
#shop-section.active { opacity: 1; }
#shop-section h2.page-title { /* ... (他ページと同じスタイル) ... */ }

.shop-intro { font-size:1.09em; line-height:1.8; color:#bbdeff; text-align: center; margin-bottom: 2.5rem; }
.shop-notes { margin:2.7em 0 0; color:#77d9ffca; text-align: center; font-size: 0.9em; }
.shop-notes a { color:#c5eefc; text-decoration:underline; }

.shop-list { list-style: none; margin: 2.2em auto 0 auto; padding: 0; border-top: 1.2px solid #333740; max-width: 650px; }
.shop-list li { display: flex; align-items: flex-start; border-bottom: 1.2px solid #333740; padding: 1.4rem 0 1.04rem 0; gap: 1.2em; }
.shop-item-img { width: 82px; height: 82px; border-radius: 9px; object-fit: cover; background: #25313c; margin-right: 1.2em; box-shadow: 0 2px 11px #3196b342; flex-shrink: 0; }
.shop-item-details { flex: 1; display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.shop-item-name { font-size: 1.09em; color: #fff; font-weight: 500; margin-bottom: 0.1em; font-family: "Shippori Mincho", serif; letter-spacing: 0.04em; line-height: 1.45; }
.shop-item-price { font-size: 0.97em; color: #9cc8ee; font-weight: 400; margin-bottom: 0.08em; letter-spacing: 0.03em; }
.shop-item-desc { font-size: 0.97em; color: #bac1c8; line-height: 1.65; margin-top: 0.09em; word-break: break-word; }
.shop-coming-soon { text-align: center; color: #bac1c8; font-size: 1.05em; padding: 2.5em 1em; font-family: "Shippori Mincho", serif; letter-spacing: 0.05em; }

@media (max-width:700px) {
  .shop-list{max-width:99vw;}
  .shop-list li{padding:0.85em 0 0.53em 0;gap:0.55em;}
  .shop-item-img{width:53px;height: 53px; margin-right: 0.6em;}
}