/** Shopify CDN: Minification failed

Line 173:0 Unexpected "{"
Line 173:1 Expected identifier but found "%"
Line 173:20 Expected identifier but found whitespace
Line 173:22 Expected identifier but found "2026"
Line 173:91 Expected identifier but found "%"

**/
/* レア度バッジのベーススタイル */
.card-rarity {
  font-size: 1.5rem;
  color: #ffcc00; /* 植物に合う色。お好みで #ffcc00（ゴールド）などに変更可 */
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rarity-label {
  margin-right: 4px;
  color: rgb(var(--color-foreground));
}

/* アイコンフォントの設定 */
.star-icon {
  display: inline-block;
  line-height: 1;
  width: 22px; /* アイコンの幅に合わせて調整 */
  height: 22px;
}

.star-icon.empty {
  opacity: 0.3;
}

/* Inbox誘導ボタンのスタイル  */
.inbox-btn-container {
  text-align: center;
  margin: 20px 0;
}

.inbox-btn {
  background-color: #4a4a4a; 
  color: #ffffff !important;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.inbox-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.inbox-subtext {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.section-template--25814450110766__custom_liquid_N3zQta-padding,
.section-template--25814450766126__custom_liquid_Y47enL-padding {
  text-align: center;
}

/* ── 最新情報（横並び：日付｜タイトル） ── */
.section-news {
  background: transparent;
  margin: 0 auto;
  max-width: 73.4rem; /* Dawnの共通幅に合わせる */
}
.section-news__list { margin: 0; padding: 0; list-style: none; }

.section-news__item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}
.section-news__item:first-child { border-top: 0.1rem solid rgba(var(--color-foreground), 0.08); }

.section-news__date {
  width: 10rem;
  flex: 0 0 10rem;
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), 0.75);
}

.section-news__title {
  flex: 1 1 auto;
  margin: 0;
}
.section-news__title a { color: inherit; text-decoration: none; }
.section-news__title a:hover { text-decoration: underline; }

@media screen and (max-width: 749px) {
  .section-news__item { flex-direction: column; gap: 0.5rem; }
  .section-news__date { width: auto; flex: 0 0 auto; }
}

/* 閲覧履歴セクションのスタイル */
.recently-viewed-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
}
.recently-viewed-title {
  text-align: center;
  margin-bottom: 30px;
}
.recently-viewed-products-list {
  list-style: none;
  padding: 0;
}
.recently-viewed-card img {
  width: 100%;
  height: auto;
  border-radius: var(--media-radius); /* Dawnの角丸設定を継承 */
}

/* 一点もの植物　サイズ情報 */
.product-spec-container {
  background: #fdfdfd;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 1.4rem; /* Dawnの標準に合わせ調整 */
  color: #333;
}
.product-spec-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.product-spec-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}
.product-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}
.product-spec-item:last-child {
  border-bottom: none;
}
.product-spec-value {
  font-weight: bold;
}

/* タブメニュー（園芸資材/鉢・鉢カバー） */
{% comment %} START: [2026/01/24][通知バナーの配色に合わせたカラー調整] {% endcomment %}
.collection-tabs-wrapper {
  margin: 2rem auto;
}

.tabs-container {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #A3B18A;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  text-decoration: none;
  background: rgba(249, 248, 243, 0.6);
  color: #344E41;
  opacity: 0.7;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  border-bottom: none;
}

/* SVGのサイズと色の制御 */
.tab-icon-svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.tab-icon-svg path, 
.tab-icon-svg polygon, 
.tab-icon-svg rect {
  fill: currentColor !important;
}

/* アクティブ状態のスタイル */
.tab-item.is-active {
  background: #fff;
  color: #344E41;
  opacity: 1;
  border: 1px solid #A3B18A;
  border-bottom: 1px solid #fff; /* 下線を消してタブが結合しているように見せる */
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-bottom: -1px; /* border-bottomの厚み分調整 */
}

.tab-icon {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-text {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (min-width: 750px) {
  .tabs-container { justify-content: center; gap: 12px; }
  .tab-item { 
    flex: none; 
    min-width: 200px; 
    flex-direction: row; 
    gap: 12px; 
    padding: 14px 24px; 
  }
  .tab-icon { margin-bottom: 0; }
  .tab-icon-svg { width: 24px; height: 24px; }
}

/* 鉢のサイズガイド */
.pot-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  min-width: 600px;
}
.pot-size-guide-table th {
  background-color: rgba(249, 248, 243, 0.6);
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
.pot-size-guide-table td {
  border: 1px solid #ddd;
  padding: 20px;
  line-height: 1.6;
}
.pot-size-guide-table td.size-label {
  background-color: rgba(249, 248, 243, 0.6);
  font-weight: bold;
  width: 30%;
}

/* 配送スケジュール注意書き */
.section-template--25814450045230__custom_liquid_i939mU-padding:has(.shipping-schedule-info) {
  padding-bottom: 0;
}

.shipping-schedule-info {
  margin: 20px 0;
  padding: 16px;
  background-color: #f8f9f8;
  font-size: 1.5rem;
  width: 31.8%;
  margin-left: auto;
}

.shipping-schedule-info p {
  margin: 0 0 8px 0;
  line-height: 1.6;
  color: #333;
  font-size: 1.5rem;
}

.shipping-schedule-info .schedule-title {
  font-weight: bold;
  color: #2d3e27;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shipping-schedule-info .schedule-title span {
  font-size: 1.8rem;
  margin-right: 8px;
}

.shipping-schedule-info .highlight-red {
  color: #c0392b;
}

.shipping-schedule-info .sub-text {
  color: #666;
}

@media screen and (max-width: 749px) {
  .shipping-schedule-info {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}

/* イベント情報　メタフィールド */
.event-info-list {
  list-style: none;
  padding: 0;
}

.event-info-list li {
  display: flex; /* 横並びにする */
  align-items: flex-start; /* 上揃えにする */
  gap: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.event-info-list li strong {
  flex-shrink: 0;
  width: 8em; /* ラベルの幅を固定して、2行目以降の開始位置を揃える */
  font-weight: bold;
}

.event-info-content {
  flex-grow: 1;
}

/* 地図（iframe）を横幅いっぱいにフィットさせる */
.event-info-content iframe {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-top: 12px;
}
@media screen and (max-width: 750px) {
  .event-info-list{
    padding-left: 0!important;
  }
  .event-info-list li {
    flex-direction: column;
}
}

/* 鉢サイズガイド */
.pot-size-guide {
  margin-top: 50px;
  margin-bottom: 50px;
}
.pot-size-guide h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.pot-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.pot-size-guide-table th, .pot-size-guide-table td {
  border: 1px solid #e8e8e8;
  padding: 15px;
  text-align: left;
}
.pot-size-guide-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  text-align: center;
}
.pot-size-guide .size-label {
  font-weight: bold;
  background-color: #fafafa;
  white-space: nowrap;
}