/* 当店の特徴セクション */
.shopfeatures_section {
  max-width: 1024px;
  margin: 0 auto;
  padding: clamp(1.5em, 3vw, 2em);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

/* タイトル */
.shopfeatures_title {
  text-align: center;
  margin-bottom: clamp(1.2em, 2.5vw, 1.8em);
}

.shopfeatures_title_ja {
  display: block;
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3em;
  letter-spacing: 0.05em;
}

.shopfeatures_title_en {
  display: block;
  font-size: clamp(0.9em, 1.5vw, 1.1em);
  color: #666;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* グリッドコンテナ */
.shopfeatures_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5em, 3vw, 2em);
}

/* コンテンツエリア */
.shopfeatures_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.3em, 1vw, 0.5em);
  margin-bottom: clamp(0.5em, 1.5vw, 0.7em);
  text-align: center;
}

/* モバイル: 1x4 縦並び（横長） */
@media (max-width: 767px) {
  .shopfeatures_grid {
    grid-template-columns: 1fr;
  }
  
  .shopfeatures_item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1em;
    padding: 0.9em !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .shopfeatures_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .shopfeatures_number {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .shopfeatures_content {
    flex: 1;
    margin-bottom: 0;
    align-items: flex-start;
    text-align: left;
    gap: clamp(0.2em, 1vw, 0.4em);
  }
  
  .shopfeatures_heading {
    font-size: clamp(1em, 2.2vw, 1.15em);
    text-align: left;
    padding: 0.3em 0.6em;
  }
  
  .shopfeatures_text {
    font-size: clamp(0.9em, 2vw, 1em);
    text-align: left;
  }
  
  .shopfeatures_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }
}

/* 特徴アイテム共通スタイル */
.shopfeatures_item {
  position: relative;
}

/* デスクトップ: 2x2 グリッド */
@media (min-width: 768px) {
  .shopfeatures_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2em, 2vw, 1.5em);
  }
  
  .shopfeatures_item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: clamp(0.7em, 1.2vw, 1em) !important;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .shopfeatures_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
}

/* 番号 */
.shopfeatures_number {
  width: clamp(45px, 5vw, 55px);
  height: clamp(45px, 5vw, 55px);
  border-radius: 50%;
  background-color: #d4a574;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3em, 2vw, 1.6em);
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: clamp(0.5em, 1.5vw, 0.8em);
}

@media (min-width: 768px) {
  .shopfeatures_number {
    width: clamp(32px, 3.5vw, 38px);
    height: clamp(32px, 3.5vw, 38px);
    font-size: clamp(0.95em, 1.4vw, 1.2em);
    margin-bottom: clamp(0.4em, 1vw, 0.6em);
  }
}

/* 見出し */
.shopfeatures_heading {
  display: inline-block;
  font-size: clamp(1.1em, 2vw, 1.3em);
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  padding: 0.4em 0.8em;
  background-color: rgba(212, 165, 116, 0.15);
  border-radius: 6px;
}

@media (min-width: 768px) {
  .shopfeatures_heading {
    font-size: clamp(1.3em, 2.5vw, 1.6em);
    padding: 0.5em 1em;
  }
}

/* テキスト */
.shopfeatures_text {
  display: block;
  font-size: clamp(0.9em, 1.6vw, 1em);
  color: #444;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .shopfeatures_text {
    font-size: clamp(1em, 2vw, 1.2em);
  }
}

/* アイコン */
.shopfeatures_icon {
  width: clamp(70px, 8vw, 90px);
  height: clamp(70px, 8vw, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .shopfeatures_icon {
    width: clamp(60px, 6vw, 75px);
    height: clamp(60px, 6vw, 75px);
  }
}

.shopfeatures_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .shopfeatures_icon {
    width: 50px;
    height: 50px;
  }
}

