    .cookie-menu {
      max-width: 1250px;
      margin: auto;
      padding: 80px 30px;
      font-family:
        "Cormorant Garamond",
        "Yu Mincho",
        serif;
      color: #5a3421;
      background: #fff;
    }

    .cookie-title-wrap {
      text-align: center;
      margin-bottom: 80px;
    }

    .cookie-icon {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .cookie-title-wrap h1 {
      font-size: 90px;
      letter-spacing: 12px;
      font-weight: 400;
      margin: 0;
    }

    .cookie-title-wrap p {
      font-size: 22px;
      letter-spacing: 2px;
      margin-top: 20px;
      color: #8d6b58;
    }

    .cookie-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px;
    }

    .cookie-item {
      text-align: center;
      position: relative;
      padding: 20px 10px;
    }

    .cookie-item::after {
      content: "";
      position: absolute;
      right: -20px;
      top: 0;
      width: 1px;
      height: 100%;
      background: #ead8cc;
    }

    .cookie-item:last-child::after {
      display: none;
    }

    .deco {
      font-size: 28px;
      color: #c59a7d;
      margin-bottom: 15px;
    }

    .cookie-item h2 {
      font-size: 20px;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .line {
      width: 80%;
      height: 1px;
      background: #d7b8a6;
      margin: 0 auto 25px;
    }

    .cookie-item p {
      font-size: 15px;
      line-height: 2;
      color: #6f5142;
      margin-bottom: 30px;
    }

    .cookie-item span {
      font-size: 42px;
      letter-spacing: 2px;
    }

    .gift-box {
      margin-top: 80px;
      border: 1px solid #d8c0b2;
      border-radius: 20px;
      padding: 35px;
      text-align: center;
      font-size: 22px;
      line-height: 2;
      color: #7c5a47;
    }

    @media screen and (max-width:1100px) {

      .cookie-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cookie-item:nth-child(2n)::after {
        display: none;
      }

    }

    @media screen and (max-width:700px) {

      .cookie-title-wrap h1 {
        font-size: 48px;
        letter-spacing: 5px;
      }

      .cookie-title-wrap p {
        font-size: 15px;
      }

      .cookie-grid {
        grid-template-columns: 1fr;
      }

      .cookie-item::after {
        display: none;
      }

      .cookie-item {
        border-bottom: 1px solid #ead8cc;
        padding-bottom: 50px;
      }

      .cookie-item h2 {
        font-size: 24px;
      }

      .cookie-item span {
        font-size: 34px;
      }

    }


/* ===== ICE CREAM SECTION ===== */
 
.ice-section {
  margin: 2rem 0;
  text-align: center;
}
 
/* タイトルエリア */
.ice-section-header {
  margin-bottom: 2rem;
}
 
.ice-section-title {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #3a3028;
  margin: 0 0 0.4rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}
 
.ice-section-sub {
  font-size: 0.82rem;
  color: #9a8878;
  letter-spacing: 0.1em;
  margin: 0;
}
 
/* カード */
.mgnt40 {margin-top: 4em;}

.ice-card {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5ddd4;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
 
.ice-card-img-wrap {
  overflow: hidden;
  margin: 0 auto 1.2rem;
}
 
.ice-card-img {
  height: 100%;
  object-fit: cover;
}
 
.ice-card-name {
  font-size: 1rem;
  color: #3a3028;
  margin: 0 0 0.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
 
.ice-card-line {
  width: 40px;
  height: 1px;
  background: #c9b89a;
  margin: 0 auto 0.8rem;
}
 
.ice-card-desc {
  font-size: 0.8rem;
  color: #7a6a5a;
  line-height: 1.7;
  margin: 0 0 1rem;
}
 
.ice-card-price {
  display: inline-block;
  font-size: 1rem;
  color: #5a4a3a;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-top: 1px solid #e5ddd4;
  padding-top: 0.8rem;
  width: 100%;
}
 
