.elementor-616 .elementor-element.elementor-element-ca4119c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-616 .elementor-element.elementor-element-ad76a79{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a437020 *//* 前のページと統一されたメインコンテナ */
.main-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 250, 252, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
  backdrop-filter: blur(10px);
}

/* 統一されたタロットカード占いページのスタイル */
.tarot-heading {
  font-size: 28px;
  font-weight: bold;
  color: #6b4a6b;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.1);
  text-align: center;
}

.sparkle {
  display: inline-block;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.tarot-subheading {
  font-size: 18px;
  color: #8a6d8a;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.instruction-text {
  background: linear-gradient(135deg, #ff9bb3 0%, #ff8aa6 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 8px 16px rgba(255, 155, 179, 0.3);
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 20px;
  background: linear-gradient(135deg, #f9ecf2 0%, #f1dbe6 100%);
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(255, 155, 179, 0.2);
}

.tarot-card {
  cursor: pointer;
  width: 120px;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  backdrop-filter: blur(5px);
  text-align: center;
}

.tarot-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
  background: rgba(255, 255, 255, 1);
}

.card-back {
  background: linear-gradient(135deg, #6b4a6b 0%, #8a6d8a 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-radius: 8px;
  height: 150px;
  transition: all 0.3s ease;
}

.tarot-card:hover .card-back {
  filter: brightness(1.1) saturate(1.2);
}

.card-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6b4a6b;
}

.accordion-container {
  display: none;
  text-align: left;
  max-width: 700px;
  margin: 20px auto 40px;
  background: rgba(255, 250, 252, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 155, 179, 0.2);
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion-button {
  width: 100%;
  background: linear-gradient(135deg, #ff9bb3 0%, #ff8aa6 100%);
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 155, 179, 0.3);
  font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

.accordion-button:hover {
  background: linear-gradient(135deg, #ff8aa6 0%, #ff7999 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 155, 179, 0.4);
}

.accordion-button::before {
  content: "🔮 ";
  margin-right: 8px;
}

.accordion-button.active::before {
  content: "✨ ";
}

.accordion-content {
  display: none;
  padding: 20px;
  background: linear-gradient(135deg, #fdf7f9 0%, #f9ecf2 100%);
  border-radius: 12px;
  margin-top: 8px;
  border: 2px solid rgba(255, 155, 179, 0.2);
  color: #5a4a5a;
  line-height: 1.6;
  box-shadow: inset 0 2px 8px rgba(255, 155, 179, 0.1);
}

/* アニメーション効果 */
.accordion-container.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* カード選択時のキラキラエフェクト */
.tarot-card.selected {
  animation: sparkleCard 0.6s ease-out;
}

@keyframes sparkleCard {
  0% { transform: scale(1); }
  25% { transform: scale(1.1) rotate(2deg); }
  50% { transform: scale(1.05) rotate(-1deg); }
  75% { transform: scale(1.08) rotate(1deg); }
  100% { transform: scale(1.08) translateY(-5px); }
}

/* 特別な強調テキスト用 */
.love-highlight {
  background: linear-gradient(45deg, #ff6b6b, #ffa8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.fortune-point {
  color: #e85a8a;
  font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .main-container {
    padding: 20px;
    margin: 10px;
  }

  .card-container {
    gap: 20px;
    padding: 15px;
  }
  
  .tarot-card {
    width: 100px;
  }
  
  .accordion-container {
    padding: 20px;
    margin: 0 10px 30px;
  }
  
  .tarot-heading {
    font-size: 24px;
  }
  
  .tarot-subheading {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .card-container {
    gap: 15px;
  }
  
  .tarot-card {
    width: 90px;
  }
  
  .accordion-button {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .accordion-content {
    padding: 15px;
  }
}

/* アコーディオンのコンテンツ調整 */
.accordion-content p:first-child {
  margin-top: 0;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* 結果タイトル */
.result-title {
  text-align: center;
  color: #6b4a6b;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}/* End custom CSS */