@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=M+PLUS+Rounded+1c:wght@400;700;800&display=swap');

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --pink:        #E8507A;
    --pink-lt:     #F8C8D4;
    --pink-pale:   #ffea00;
    --pink-deep:   #f46695;
    --green:       #69c465;
    --green-lt:    #C8D8B0;
    --green-pale:  #ffea00;
    --green-deep:  #6da741;
    --bg:          #FDF6F6;
    --bg-section:  #F8EEEE;
    --white:       #FFFFFF;
    --ink:         #201C18;
    --ink-mid:     #5A5048;
    --ink-light:   #9A9088;
    --border:      #E8D4D4;
    --border-mid:  #D4B8B8;
  }
 
    /*---------------------------------------- 共通 */
 
    #news main .content-main {
      background-color: #ffd5d5;
background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,.2) 3px, rgba(255,255,255,.2) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,.2) 3px, rgba(255,255,255,.2) 4px);
      padding-bottom: 50px;
    }
 
    #news .post-content a {
      text-decoration: none;
    }
 
    #news .post-content div,
    #news .post-content p {
      font-family: 'Comfortaa','Zen Maru Gothic','ヒラギノ角ゴ Pro W3','Noto Sans JP',sans-serif;
    }
 
    .wrap {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 16px 64px;
    }
 
    /* ===== Hero ===== */
    #news .hero {
      margin-bottom: 28px;
    }
    .hero img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0 0 var(--radius) var(--radius);
    }
#news .hero-caption {
  background: var(--pink);
  padding: 12px 20px;
  margin-bottom: 0;
}
 
#news .hero-caption-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}
 
#news .hero-caption-text strong {
  color: #fff;
  font-weight: 700;
} 


#news .sale-main {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
        padding: 36px 20px 56px;
}
 
#news .sale-section {
  margin-bottom: 60px;
}
 
#news .sale-section:last-child {
  margin-bottom: 0;
}
 
#news .section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 4px;
}

#news .section-head.pink-head {
  background: var(--pink);
}

#news .section-head.green-head {
  background: var(--green);
}

#news .section-name {
  font-family: 'M PLUS Rounded 1c', 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}

#news .section-name-en {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
}

#news .section-disc-tag {
  margin-left: auto;
  display: inline-block;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 20px;
  white-space: nowrap;
}

#news .section-head.pink-head .section-disc-tag {
  background: #fff;
  color: var(--pink-deep);
}

#news .section-head.green-head .section-disc-tag {
  background: #fff;
  color: var(--green-deep);
}
 
  /* GRID */
 
#news .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
 
  /* CARD */
 
#news .card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
 
#news .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(32,28,24,.11);
}
 
#news .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
#news .card.card-50::before,
#news .card.card-30::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
 
#news .card.card-50::before {
  background: linear-gradient(90deg, var(--pink-lt), var(--pink));
}
 
#news .card.card-30::before {
  background: linear-gradient(90deg, var(--green-lt), var(--green));
}
 
#news .card:hover::before {
  transform: scaleX(1);
}
 
#news .card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(45deg, rgba(232,85,122,.05) 0px, rgba(232,85,122,.05) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(74,144,96,.05) 0px, rgba(74,144,96,.05) 1px, transparent 1px, transparent 10px),
    #FBF7F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
#news .card-img-placeholder svg {
  opacity: .22;
}
 
#news .card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
 
#news .card-body {
  padding: 13px;
  border-top: 1px solid var(--border);
}
 
#news .card-disc {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}
 
#news .card-disc-50 {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
 
#news .card-disc-30 {
  background: var(--green-pale);
  color: var(--green-deep);
}

#news .card-note {
  font-size: 11px;
  color: var(--pink-deep);
  line-height: 1.5;
  margin-bottom: 6px;
}

#news .card-name {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
 
#news .card-sep {
  height: 1px;
  margin-bottom: 10px;
  background: repeating-linear-gradient(90deg, var(--border-mid) 0px, var(--border-mid) 3px, transparent 3px, transparent 8px);
}
 
#news .card-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 8px;
}
 
#news .price-was {
  font-size: 11px;
  color: var(--ink-light);
  text-decoration: line-through;
}
 
#news .price-now {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .02em;
}
 
#news .price-unit {
  font-size: 11px;
  color: var(--ink-light);
}
 
#news .card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
 
#news .card-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--ink-light);
}
 
#news .stock-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: var(--green-lt);
  flex-shrink: 0;
}
 
#news .card-var {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: .04em;
  background: var(--bg-section);
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}
 
  /* OTHER NEWS */
 
#news .news-wrap {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px 56px;
}
 
#news .news-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  position: relative;
}

#news .news-head-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
}
 
#news .news-head-en {
  font-style: italic;
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: .06em;
}
 
#news .news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
 
#news .news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
 
#news .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(32,28,24,.09);
}
 
#news .news-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #F0E8E8;
}
 
#news .news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background:
    repeating-linear-gradient(45deg, rgba(232,80,122,.04) 0px, rgba(232,80,122,.04) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, rgba(106,144,80,.04) 0px, rgba(106,144,80,.04) 1px, transparent 1px, transparent 10px),
    #F8EEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 12px;
  letter-spacing: .08em;
}
 
#news .news-card-body {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
}
 
#news .news-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 6px;
}
 
#news .news-card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
}
 
  @media (max-width: 740px) {
 
#news .news-wrap {
  padding: 40px 20px 56px;
}
 
#news .news-grid {
  gap: 12px;
}
}
 
  /* FOOTER NOTE */
 
#news .note-wrap {
  background: #fff9f9;
  border: 2px solid var(--pink);
  border-radius: 8px;
  margin: 0 20px 20px;
}
 
#news .note-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 28px;
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.6;
}
 
#news .note-inner strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .06em;
}
 
  @media (max-width: 740px) {
 
#news .site-header {
  padding: 0 20px;
}
 
#news .hero-inner {
  grid-template-columns: 1fr;
  padding: 44px 20px 36px;
  gap: 28px;
}
 
#news .hero-image-slot {
  aspect-ratio: 16/9;
}
 
 
#news .product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
 
#news .note-inner {
  padding: 22px 20px;
}
 
#news .section-head {
  flex-wrap: wrap;
}
 
#news .section-disc-tag {
  margin-left: 0;
}
}
 
    /*====================== mb ======================*/
    @media screen and (max-width: 768px) {
      body .box-white,
      body .post-content { padding: 0; }
      body .group { padding: 0 0 80px; }
      body main > .title_area,
      body .group::before,
      body .inner > header,
      body .inner dl.periodText { display: none !important; }
      body .group .inner { width: 100%; }
      body .post-content p,
      body .post-content h2,
      body .post-content h3 { margin: 0; }
      #news main .pc { display: none !important; }
      #news main .sp { display: block !important; }
      .content-main img { width: 100%; height: auto; vertical-align: top; }
      #news main .content img.img-responsive { width: 100%; height: auto; vertical-align: top; }
    }
 
    /*====================== pc ======================*/
    @media print, screen and (min-width: 769px) {
      body header.title_area,
      body .group:nth-of-type(2n-1)::before { display: none !important; }
      body .group,
      body .box-white,
      body .post-content { padding: 0; }
      body .inner { max-width: 860px; width: 100%; }
      body .inner > header,
      body .inner dl.periodText { display: none !important; }
      body .post-content p,
      body .post-content h2,
      body .post-content h3 { margin: 0; }
      #news main div.image { text-align: center; }
      #news main .content-topic { margin: 0 auto; padding-top: 68px; padding-bottom: 100px; }
      #news main .pc { display: block !important; }
      #news main .sp { display: none !important; }
    }
 
    @media (max-width: 400px) {
      .card .name  { font-size: 12px; }
      .card .price { font-size: 19px; }
    }