/* 100yen_emergency_goods.php 専用CSS */

/* イントロセクション */
.hundred-yen-goods-page .intro-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hundred-yen-goods-page .intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="yenGrid" width="15" height="15" patternUnits="userSpaceOnUse"><text x="7.5" y="12" text-anchor="middle" fill="rgba(255,255,255,0.1)" font-size="8" font-family="Arial">¥</text></pattern></defs><rect width="100" height="100" fill="url(%23yenGrid)"/></svg>');
  opacity: 0.3;
}

.hundred-yen-goods-page .intro-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hundred-yen-goods-page .intro-text h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hundred-yen-goods-page .intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hundred-yen-goods-page .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hundred-yen-goods-page .benefit-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hundred-yen-goods-page .benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hundred-yen-goods-page .benefit-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hundred-yen-goods-page .benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
}

.hundred-yen-goods-page .benefit-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

/* ストア情報セクション */
.hundred-yen-goods-page .store-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.hundred-yen-goods-page .store-info h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hundred-yen-goods-page .store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hundred-yen-goods-page .store-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hundred-yen-goods-page .store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.hundred-yen-goods-page .store-card.daiso::before {
  background: linear-gradient(90deg, #0066CC, #0052A3);
}

.hundred-yen-goods-page .store-card.seria::before {
  background: linear-gradient(90deg, #E91E63, #C2185B);
}

.hundred-yen-goods-page .store-card.cando::before {
  background: linear-gradient(90deg, #4CAF50, #388E3C);
}

.hundred-yen-goods-page .store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hundred-yen-goods-page .store-card:hover::before {
  height: 8px;
}

.hundred-yen-goods-page .store-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  overflow: hidden;
}

.hundred-yen-goods-page .store-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hundred-yen-goods-page .store-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hundred-yen-goods-page .store-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.hundred-yen-goods-page .store-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.hundred-yen-goods-page .store-features .feature {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.hundred-yen-goods-page .store-card.daiso .store-features .feature {
  background: rgba(0, 102, 204, 0.1);
  color: #0066CC;
}

.hundred-yen-goods-page .store-card.seria .store-features .feature {
  background: rgba(233, 30, 99, 0.1);
  color: #E91E63;
}

.hundred-yen-goods-page .store-card.cando .store-features .feature {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.hundred-yen-goods-page .store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hundred-yen-goods-page .store-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* カテゴリーセクション */
.hundred-yen-goods-page .categories-section {
  padding: 80px 0;
  background: white;
}

.hundred-yen-goods-page .categories-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hundred-yen-goods-page .category-block {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 15px;
}

.hundred-yen-goods-page .category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  border-left: 6px solid #FF6B35;
}

.hundred-yen-goods-page .category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hundred-yen-goods-page .category-info h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hundred-yen-goods-page .category-info p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* 商品グリッド */
.hundred-yen-goods-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.hundred-yen-goods-page .product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.hundred-yen-goods-page .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hundred-yen-goods-page .product-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.hundred-yen-goods-page .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.hundred-yen-goods-page .product-card:hover .product-img {
  transform: scale(1.05);
}

.hundred-yen-goods-page .price-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.hundred-yen-goods-page .product-info {
  padding: 25px;
}

.hundred-yen-goods-page .product-info h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hundred-yen-goods-page .product-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.hundred-yen-goods-page .usage-tips {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #FF6B35;
}

.hundred-yen-goods-page .usage-tips h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #FF6B35;
  font-weight: 600;
}

.hundred-yen-goods-page .usage-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hundred-yen-goods-page .usage-tips li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: #555;
  font-size: 0.95rem;
}

.hundred-yen-goods-page .usage-tips li::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: 5px;
}

.hundred-yen-goods-page .stores-available {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hundred-yen-goods-page .store-tag {
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.hundred-yen-goods-page .store-tag.daiso {
  background: #0066CC;
}

.hundred-yen-goods-page .store-tag.seria {
  background: #E91E63;
}

.hundred-yen-goods-page .store-tag.cando {
  background: #4CAF50;
}

/* ショッピングティップス */
.hundred-yen-goods-page .shopping-tips {
  padding: 80px 0;
  background: #f8f9fa;
}

.hundred-yen-goods-page .shopping-tips h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hundred-yen-goods-page .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hundred-yen-goods-page .tip-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hundred-yen-goods-page .tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FF6B35;
  transition: all 0.3s ease;
}

.hundred-yen-goods-page .tip-card:hover::before {
  height: 8px;
}

.hundred-yen-goods-page .tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hundred-yen-goods-page .tip-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hundred-yen-goods-page .tip-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hundred-yen-goods-page .tip-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* コスト比較 */
.hundred-yen-goods-page .cost-comparison {
  padding: 80px 0;
  background: white;
}

.hundred-yen-goods-page .cost-comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hundred-yen-goods-page .comparison-table-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: auto;
}

.hundred-yen-goods-page .comparison-table {
  width: 100%;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-collapse: collapse;
}

.hundred-yen-goods-page .comparison-table th {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.hundred-yen-goods-page .comparison-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.hundred-yen-goods-page .comparison-table tr:hover {
  background: rgba(255, 107, 53, 0.05);
}

.hundred-yen-goods-page .comparison-table tr:last-child td {
  border-bottom: none;
}

.hundred-yen-goods-page .comparison-table td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
}

.hundred-yen-goods-page .savings {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.1rem;
}

.hundred-yen-goods-page .cost-note {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-top: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.hundred-yen-goods-page .cost-note strong {
  color: #FF6B35;
  font-size: 1.4rem;
}

/* アクションプラン */
.hundred-yen-goods-page .action-plan {
  padding: 80px 0;
  background: #f8f9fa;
}

.hundred-yen-goods-page .action-plan h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--secondary-color);
  font-weight: 700;
}

.hundred-yen-goods-page .plan-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hundred-yen-goods-page .step-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.hundred-yen-goods-page .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hundred-yen-goods-page .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hundred-yen-goods-page .step-content {
  padding-top: 20px;
}

.hundred-yen-goods-page .step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-weight: 600;
}

.hundred-yen-goods-page .step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* CTAセクション */
.hundred-yen-goods-page .cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  text-align: center;
}

.hundred-yen-goods-page .cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.hundred-yen-goods-page .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hundred-yen-goods-page .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.hundred-yen-goods-page .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hundred-yen-goods-page .cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hundred-yen-goods-page .cta-buttons .primary-btn {
  background: white;
  color: #FF6B35;
}

.hundred-yen-goods-page .cta-buttons .primary-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hundred-yen-goods-page .cta-buttons .secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.hundred-yen-goods-page .cta-buttons .secondary-btn:hover {
  background: white;
  color: #FF6B35;
  transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hundred-yen-goods-page .intro-text h2 {
    font-size: 2.3rem;
  }

  .hundred-yen-goods-page .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
  }

  .hundred-yen-goods-page .store-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hundred-yen-goods-page .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .hundred-yen-goods-page .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .hundred-yen-goods-page .intro-section {
    padding: 60px 0;
  }

  .hundred-yen-goods-page .intro-text h2 {
    font-size: 2rem;
  }

  .hundred-yen-goods-page .intro-text p {
    font-size: 1.1rem;
  }

  .hundred-yen-goods-page .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .hundred-yen-goods-page .store-info,
  .hundred-yen-goods-page .categories-section,
  .hundred-yen-goods-page .shopping-tips,
  .hundred-yen-goods-page .cost-comparison,
  .hundred-yen-goods-page .action-plan,
  .hundred-yen-goods-page .cta-section {
    padding: 60px 0;
  }

  .hundred-yen-goods-page .store-grid,
  .hundred-yen-goods-page .products-grid,
  .hundred-yen-goods-page .tips-grid,
  .hundred-yen-goods-page .plan-steps {
    grid-template-columns: 1fr;
  }

  .hundred-yen-goods-page .category-header {
    padding: 20px;
  }

  .hundred-yen-goods-page .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hundred-yen-goods-page .category-info h3 {
    font-size: 1.5rem;
  }

  .hundred-yen-goods-page .product-info {
    padding: 20px;
  }

  .hundred-yen-goods-page .comparison-table-container {
    overflow-x: auto;
  }

  .hundred-yen-goods-page .comparison-table {
    min-width: 600px;
  }

  .hundred-yen-goods-page .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hundred-yen-goods-page .cta-buttons .btn {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .hundred-yen-goods-page .intro-text h2 {
    font-size: 1.8rem;
  }

  .hundred-yen-goods-page .intro-text p {
    font-size: 1rem;
  }

  .hundred-yen-goods-page .benefit-item {
    padding: 20px 15px;
  }

  .hundred-yen-goods-page .benefit-item i {
    font-size: 2rem;
  }

  .hundred-yen-goods-page .benefit-item h3 {
    font-size: 1.1rem;
  }

  .hundred-yen-goods-page .store-card,
  .hundred-yen-goods-page .tip-card,
  .hundred-yen-goods-page .step-card {
    padding: 25px 20px;
  }

  .hundred-yen-goods-page .product-info {
    padding: 15px;
  }

  .hundred-yen-goods-page .usage-tips {
    padding: 15px;
  }

  .hundred-yen-goods-page .category-header {
    padding: 15px;
  }

  .hundred-yen-goods-page .cost-note {
    padding: 20px;
    font-size: 1.1rem;
  }

  .hundred-yen-goods-page .cta-content h2 {
    font-size: 2rem;
  }

  .hundred-yen-goods-page .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
} 