/* =========================
PC限定：洗練バナーUI（白・非カード）
========================= */
@media screen and (min-width: 768px) {

  .top-banners {
    max-width: 1100px;
    margin: 50px auto 60px;
  }

  .banner-item {
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
  }

  .banner-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* 控えめホバー */
  .banner-item:hover img {
    transform: scale(1.02);
    opacity: 0.96;
  }
}


/* =========================
フラワーギフト（余白重視・シンプル）
========================= */
@media screen and (min-width: 768px) {

  .ran-tite {
    max-width: 1100px;
    margin: 60px auto 25px;
    padding-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #eaeaea;
  }

  .osusume-2dn {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    gap: 28px;
  }

  .item-link {
    display: block;
  }

  .item-link img {
    width: 100%;
    display: block;
    transition: transform 0.25s ease;
  }

  .item-link:hover img {
    transform: scale(1.02);
  }

  .item-name {
    margin-top: 12px;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
  }

  .item-price {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }
}

/* 下線削除 */
.osusume-2dn a,
.osusume-2dn a:hover,
.item-name,
.item-price {
  text-decoration: none !important;
  color: inherit;
}


/* =========================
胡蝶蘭：ミニマル高級UI
========================= */
@media screen and (min-width: 768px) {

  /* 上段 */
  .ran-top {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .ran-top1 img {
    width: 100%;
    max-width: 240px;
  }

  /* テキスト */
  .ran-txt1 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
  }

  .ran-txt1a {
    font-size: 14px;
    line-height: 2.0;
    color: #666;
    margin-bottom: 25px;
  }

  .ran-txt1b {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .ran-txt1c img {
    transition: opacity 0.2s ease;
  }

  .ran-txt1c img:hover {
    opacity: 0.85;
  }

  /* 説明 */
  .ran-top2 {
    max-width: 600px;
  }

  .ran-txt2 {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
  }

  /* 商品一覧（カード感完全排除） */
  .ran-2dn {
    max-width: 1100px;
    margin: 50px auto;
    display: flex;
    gap: 24px;
  }

  .ran-2dn div {
    width: 100%;
    padding: 0;
    border: none; /* ←カード感削除 */
    background: none;
  }

  .ran-2dn img {
    width: 100%;
    transition: transform 0.25s ease;
  }

  .ran-2dn div:hover img {
    transform: scale(1.02);
  }

  .ran-2dn p {
    text-align: left;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 8px;
  }

  .ran-2dn p:last-child {
    font-size: 13px;
    font-weight: 500;
    color: #333;
  }

  /* リスト装飾削除 */
  .ran-txt0 {
    list-style: none;
    padding-left: 0;
  }

  .ran-txt0 li {
    margin-bottom: 14px;
  }
}