/* ===================================
   基本的なリセットCSS（必要最小限）
   =================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

a {
  text-decoration: none;
}

/* ===================================
   スペシャルメニューセクション用カスタムCSS
   =================================== */

/* 特別なサイアンブルーの背景 */
.bg-cyan-special {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 50%, #006064 100%);
  position: relative;
}

.bg-cyan-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* スペシャルカード */
.special-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 3px solid #e0f7ff;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 188, 212, 0.15),
    0 8px 16px rgba(0, 188, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00bcd4, #0097a7, #006064, #00bcd4);
  border-radius: 22px;
  z-index: -1;
  animation: rainbow-border 3s linear infinite;
}

@keyframes rainbow-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* リボンスタイル */
.ribbon-style {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.ribbon-style::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a52, #ff8a80, #ff6b6b);
  border-radius: 28px;
  z-index: -1;
  animation: ribbon-glow 2s ease-in-out infinite alternate;
}

@keyframes ribbon-glow {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* 番号サークル */
.number-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  box-shadow: 
    0 8px 20px rgba(255, 215, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
  position: relative;
  animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.number-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #ffd700, #ffb300, #ffc107, #ffd700);
  border-radius: 50%;
  z-index: -1;
  animation: circle-rotate 4s linear infinite;
}

@keyframes circle-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ゴールデンテキスト */
.golden-text {
  background: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ff8f00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  position: relative;
}

/* クリムゾンテキスト */
.crimson-text {
  color: #dc143c;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(220, 20, 60, 0.3);
}

/* マジックグラデーション背景 */
.bg-gradient-magic {
  background: linear-gradient(135deg, 
    #667eea 0%, 
    #764ba2 25%, 
    #667eea 50%, 
    #764ba2 75%, 
    #667eea 100%);
  background-size: 400% 400%;
  animation: magic-gradient 8s ease infinite;
}

@keyframes magic-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* テキストシャドウ */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* カードシャドウ */
.card-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* スペシャルメニューセクション専用の追加スタイル */
.special-menu-container {
  position: relative;
  overflow: hidden;
}

.special-menu-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: sparkle-move 20s linear infinite;
  pointer-events: none;
}

@keyframes sparkle-move {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* プライスカード用の特別スタイル */
.price-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin: 10px 0;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.price-card:hover::before {
  left: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 特別な強調テキスト */
.highlight-text {
  background: linear-gradient(135deg, #ff6b6b, #ffa726);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

/* 特別メニュー用の黄色テキスト（青背景用） */
.special-menu-text {
  background: linear-gradient(135deg, #ffebcb, #ffe1c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(255, 193, 7, 0.8), 0 0 2px rgba(255, 235, 59, 0.6);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

/* プロフィール画像の位置調整 */
.rounded-full.object-cover {
  object-position: 100% center;
}

/* スマホ用のフォントサイズと余白の調整 */
@media (max-width: 768px) {
  body {
    font-size: 20px !important;
  }
  
  /* 基本的な文字サイズを大きく */
  p, li, div, span {
    font-size: 1.188rem !important;
    line-height: 1.8 !important;
  }
  
  /* 見出しのサイズ調整 */
  h1 {
    font-size: 2.125rem !important;
    line-height: 1.3 !important;
  }
  
  h2 {
    font-size: 1.875rem !important;
    line-height: 1.3 !important;
  }
  
  h3 {
    font-size: 1.625rem !important;
    line-height: 1.4 !important;
  }
  
  h4 {
    font-size: 1.375rem !important;
    line-height: 1.4 !important;
  }
  
  /* 余白の調整 - より小さく */
  section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .px-6 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  .py-16, .py-20 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .p-4 {
    padding: 0.75rem !important;
  }
  
  .p-6 {
    padding: 1rem !important;
  }
  
  .p-8 {
    padding: 1rem !important;
  }
  
  .p-12 {
    padding: 1rem !important;
  }
  
  .px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  
  .mb-4 {
    margin-bottom: 0.75rem !important;
  }
  
  .mb-6 {
    margin-bottom: 1rem !important;
  }
  
  .mb-8, .mb-12, .mb-16 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4 {
    margin-top: 0.75rem !important;
  }
  
  .mt-6 {
    margin-top: 1rem !important;
  }
  
  .mt-8 {
    margin-bottom: 1rem !important;
  }
  
  .gap-4, .gap-6, .gap-8 {
    gap: 0.75rem !important;
  }
  
  /* カード内の余白調整 */
  .special-card {
    padding: 0.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .bg-gray-50.rounded-lg {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* テキストサイズのクラス調整 - さらに大きく */
  .text-xs {
    font-size: 1.063rem !important;
  }
  
  .text-sm {
    font-size: 1.125rem !important;
  }
  
  .text-base {
    font-size: 1.188rem !important;
  }
  
  .text-lg {
    font-size: 1.313rem !important;
  }
  
  .text-xl {
    font-size: 1.438rem !important;
  }
  
  .text-2xl {
    font-size: 1.688rem !important;
  }
  
  .text-3xl {
    font-size: 1.938rem !important;
  }
  
  .text-4xl {
    font-size: 2.188rem !important;
  }
  
  .text-5xl {
    font-size: 2.563rem !important;
  }
  
  /* ボタンとリンクのサイズ */
  button, a.inline-block {
    font-size: 1.125rem !important;
    padding: 0.875rem 1.5rem !important;
  }
  
  /* リボンスタイルのサイズ調整 */
  .ribbon-style {
    font-size: 1rem !important;
    padding: 0.5rem 1.25rem !important;
  }
}
