@charset "UTF-8";
/* CSS Document */

/* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック体", YuGothic, sans-serif;
      background: #fdfaf6;
      color: #333;
      line-height: 1.7;
      -webkit-text-size-adjust: 100%;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── Header ── */
    .site-header {
      background: #fff;
      border-bottom: 1px solid #e8e0d4;
      padding: 12px 20px;
      text-align: center;
      font-size: 12px;
      color: #888;
      letter-spacing: 0.05em;
    }
    .site-header a {
    color: #5a7a5a;
    font-weight: 700;
    display: block;
    max-width: 210px;
    margin: 0 auto;
    width: 80%;
}
	  .site-header a img {
    width: 100%;
    height: auto;
}

    /* ── Hero ── */
    .hero {
      background-image: url("../img/back.jpg");
		background-position:left center;
		background-size: cover;
      color: #666;
      text-align: center;
      padding: clamp(40px, 8vw, 70px) 20px clamp(36px, 7vw, 60px);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
		
      pointer-events: none;
    }
    .hero-badge {
      display: inline-block;
      border: 1px solid rgba(26,58,92,0.6);
      color: #1a3a5c;
      font-size: 11px;
      letter-spacing: 0.2em;
      padding: 5px 18px;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .hero h1 {
          max-width: 720px;
    margin: 0 auto;
    margin-bottom: 30px;
    }
	  .hero h1 img {
		  width: 100%;
		  height: auto;
	  }
    .hero-sub {
      font-size: clamp(12px, 2.5vw, 16px);
      opacity: 0.85;
      margin-bottom: 24px;
      letter-spacing: 0.04em;
    }
    .hero-date {
      font-size: 13px;
      color: #1a3a5c;
      border-top: 1px solid rgba(26,58,92,0.3);
      display: inline-block;
      padding-top: 14px;
      letter-spacing: 0.1em;
    }

    /* ── Anchor Nav ── */
    .anchor-nav {
      background: #1a3a5c;
      position: sticky;
      top: 0;
      z-index: 200;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .anchor-nav::-webkit-scrollbar { display: none; }
    .anchor-nav ul {
      display: flex;
      list-style: none;
      justify-content: center;
      min-width: max-content;
      margin: 0 auto;
    }
    .anchor-nav li a {
      display: block;
      padding: 13px 16px;
      font-size: 12px;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.05em;
      transition: color 0.2s, background 0.2s;
    }
    .anchor-nav li a:hover,
    .anchor-nav li a.active { color: #ffd700; background: rgba(255,255,255,0.06); }
    @media (max-width: 480px) {
      .anchor-nav li a { padding: 12px 11px; font-size: 11px; }
    }

    /* ── Filter Bar (hidden until filter active) ── */
    .filter-bar {
      display: none;
      background: #fef9e7;
      border-bottom: 2px solid #ffd700;
      padding: 10px 20px;
      font-size: 13px;
      color: #5a4a00;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      position: sticky;
      top: 46px;
      z-index: 190;
    }
    .filter-bar.active { display: flex; }
    .filter-bar strong { font-weight: 700; }
    .btn-reset {
      background: none;
      border: 1px solid #c9a800;
      color: #5a4a00;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 20px;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }
    .btn-reset:hover { background: #ffd70033; }

    /* ── Section ── */
    .section {
      max-width: 980px;
      margin: 0 auto;
      padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 32px);
    }
    .section-header {
      text-align: center;
      margin-bottom: 36px;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.2em;
      color: #999;
      margin-bottom: 10px;
    }
    .section-label::before,
    .section-label::after {
      content: "";
      display: block;
      width: 28px;
      height: 1px;
      background: #ccc;
    }
    .section-title {
      font-size: clamp(18px, 4vw, 26px);
      font-weight: 900;
      color: #1a3a5c;
      line-height: 1.3;
    }
    .section-desc {
      font-size: 13px;
      color: #777;
      margin-top: 8px;
    }

    .section-divider {
      border: none;
      border-top: 1px dashed #d9cfbf;
      margin: 0 clamp(16px, 4vw, 32px);
    }
    .section-bg-cream { background: #f7f3ec; }

    /* Section hidden by filter */
    .section-wrap.filter-hidden { display: none; }

    /* ── Product Grid ── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 860px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media (max-width: 480px) {
      .product-grid { grid-template-columns: 1fr; gap: 14px; }
    }

    /* ── Product Card ── */
    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(26,58,92,0.07);
      display: flex;
      flex-direction: column;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(26,58,92,0.13);
    }
    .card.hidden { display: none; }

    .card-img {
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
    }
    .card-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f0ebe0 0%, #e0d8cc 100%);
      font-size: clamp(48px, 8vw, 72px);
    }
    .badge-popular {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #f39c12;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }
    .badge-new {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #2ecc71;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }
    .card-body {
      padding: clamp(14px, 3vw, 20px);
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .card-title {
      font-size: clamp(13px, 2vw, 16px);
      font-weight: 900;
      color: #1a3a5c;
      line-height: 1.35;
    }
    .card-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      flex-wrap: wrap;
    }
    .price-normal {
      font-size: clamp(17px, 3vw, 20px);
      font-weight: 900;
      color: #1a3a5c;
    }
    .price-normal small { font-size: 11px; font-weight: 400; }
    .card-desc {
      font-size: clamp(11px, 1.8vw, 12.5px);
      color: #555;
      line-height: 1.65;
      flex: 1;
    }
    .card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
    .card-tag {
      display: inline-block;
      background: #eef4f0;
      color: #3a7a5a;
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }
    .card-footer { padding: 0 clamp(14px, 3vw, 20px) clamp(14px, 3vw, 20px); }
    .btn-buy {
      display: block;
      text-align: center;
      background: linear-gradient(135deg, #1a3a5c, #2d5a8e);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 13px 12px;
      border-radius: 8px;
      transition: opacity 0.2s;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .btn-buy:hover { opacity: 0.82; }

    /* ── Table Card (Pancake set) ── */
    .table-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(26,58,92,0.07);
      grid-column: 1 / -1;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }
    .table-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(26,58,92,0.12);
    }
    .table-card.hidden { display: none; }
    .table-card-header {
      background: linear-gradient(90deg, #1a3a5c, #2d5a8e);
      color: #fff;
      padding: 20px clamp(16px, 4vw, 28px);
    }
    .table-card-header h3 { font-size: clamp(15px, 2.5vw, 18px); font-weight: 900; }
    .table-card-header p { font-size: 12px; opacity: 0.8; margin-top: 4px; }
    .table-card-body { padding: clamp(14px, 3vw, 24px); overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .table-card table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 420px; }
    .table-card th {
      background: #f0ebe0;
      color: #1a3a5c;
      padding: 10px 14px;
      text-align: left;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.05em;
    }
    .table-card td { padding: 12px 14px; border-bottom: 1px solid #f0ebe0; color: #444; }
    .table-card tr:last-child td { border-bottom: none; }
    .table-card .td-price { font-weight: 700; color: #1a3a5c; font-size: 15px; white-space: nowrap; }
    .table-card .card-footer { padding: clamp(0px,0px,0px) clamp(14px,4vw,28px) clamp(14px,3vw,24px); }

    /* ── Message Card ── */
    .message-card {
      text-align: center;
      margin: 0 auto clamp(32px, 5vw, 48px);
      max-width: 680px;
    }
    .message-card .big-emoji { font-size: clamp(36px, 7vw, 48px); margin-bottom: 10px; }
    .message-card h2 { font-size: clamp(16px, 3vw, 20px); font-weight: 900; color: #1a3a5c; margin-bottom: 8px; }
    .message-card p { font-size: clamp(12px, 2vw, 13px); color: #666; }

    /* ── Budget Filter Section ── */
    .budget-section { max-width: 980px; margin: 0 auto; padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 32px); }
    .budget-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 36px;
    }
    @media (max-width: 640px) {
      .budget-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    }
    .budget-btn {
      background: #fff;
      border: 2px solid #d4c9b8;
      border-radius: 12px;
      padding: clamp(16px, 3vw, 22px) 12px;
      text-align: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      box-shadow: 0 2px 8px rgba(26,58,92,0.05);
    }
    .budget-btn:hover { border-color: #2d5a8e; transform: translateY(-2px); }
    .budget-btn.selected { border-color: #1a3a5c; background: #1a3a5c; color: #fff; }
    .budget-btn .budget-range {
      font-size: clamp(13px, 2.5vw, 16px);
      font-weight: 900;
      color: #1a3a5c;
      letter-spacing: 0.03em;
    }
    .budget-btn.selected .budget-range { color: #ffd700; }
    .budget-btn .budget-count {
      font-size: 11px;
      color: #888;
      letter-spacing: 0.06em;
    }
    .budget-btn.selected .budget-count { color: rgba(255,255,255,0.75); }
    .budget-btn .budget-label {
      font-size: 11px;
      color: #666;
      line-height: 1.4;
    }
    .budget-btn.selected .budget-label { color: rgba(255,255,255,0.85); }

    .budget-all-btn {
      display: block;
      text-align: center;
      margin: 20px auto 0;
      background: none;
      border: 1px solid #c0b5a0;
      color: #666;
      font-size: 12px;
      font-weight: 700;
      padding: 8px 24px;
      border-radius: 20px;
      cursor: pointer;
      letter-spacing: 0.06em;
      transition: border-color 0.2s, color 0.2s;
    }
    .budget-all-btn:hover { border-color: #1a3a5c; color: #1a3a5c; }

    /* ── Footer ── */
    .site-footer {
      background: #1a3a5c;
      color: rgba(255,255,255,0.55);
      text-align: center;
      padding: clamp(28px, 5vw, 40px) 20px;
      font-size: 12px;
      letter-spacing: 0.05em;
    }
    .site-footer a { color: rgba(255,255,255,0.8); }
    .site-footer p + p { margin-top: 8px; }