/* =============================================
   Mobile CSS - 令和ギャルズ スマホ専用サイト
   ============================================= */

:root {
  /* カラーパレット */
  --color-pink: #FF69B4;
  --color-hot-pink: #FF1493;
  --color-magenta: #FF00FF;
  --color-cyan: #00FFFF;
  --color-blue: #0000FF;
  --color-orange: #FFA500;
  --color-yellow: #FFD700;
  --color-red: #FF0000;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #808080;
  
  /* レイアウト */
  --container-padding: 16px;
  --border-radius: 8px;
  
  /* フォント */
  --font-primary: 'M PLUS 1p', sans-serif;
}

/* =============================================
   ベーススタイル
   ============================================= */

body {
  font-family: var(--font-primary);
  background-color: var(--color-white);
  color: var(--color-black);
  position: relative;
  overflow-x: hidden;
  line-height: 1.4;
}

/* ヒョウ柄背景 - 左右のサイドバー */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 120px;
  background-image: url('../images/leopard-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-y;
  z-index: 0;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

/* メインコンテナ */
.main-container {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 auto;
  background-color: var(--color-white);
  min-height: 100vh;
  padding: 0 var(--container-padding);
}

/* =============================================
   ロゴセクション
   ============================================= */

.logo-section {
  text-align: center;
  padding: 40px 0 20px;
}

.logo-image {
  max-width: 220px;
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* =============================================
   ヘッダーバナー
   ============================================= */

.header-banner {
  background: linear-gradient(135deg, var(--color-hot-pink) 0%, var(--color-magenta) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  margin: 20px 0;
  position: relative;
  letter-spacing: 1px;
}

.header-banner::before,
.header-banner::after {
  content: '★';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.header-banner::before {
  left: 10px;
}

.header-banner::after {
  right: 10px;
}

/* =============================================
   メインコンテンツ
   ============================================= */

.main-content {
  padding: 20px 0;
}

.content-text {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

.content-text strong {
  font-weight: 900;
}

.emoji {
  font-style: normal;
}

/* =============================================
   訪問者カウンター
   ============================================= */

.visitor-counter {
  background-color: var(--color-black);
  color: var(--color-hot-pink);
  text-align: center;
  padding: 15px 20px;
  margin: 30px 0;
  border-radius: var(--border-radius);
  position: relative;
}

.counter-number {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
}

.counter-label {
  color: var(--color-white);
  font-size: 11px;
  margin-top: 5px;
  display: block;
}

.counter-label a {
  color: var(--color-cyan);
  text-decoration: underline;
}

/* =============================================
   メニューセクション
   ============================================= */

.menu-section {
  margin: 40px 0;
}

.menu-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  font-family: serif;
  color: transparent;
  background: linear-gradient(45deg, var(--color-orange), var(--color-hot-pink), var(--color-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.star-divider {
  text-align: center;
  font-size: 12px;
  color: var(--color-black);
  margin: 20px 0;
  letter-spacing: 2px;
}

.menu-list {
  padding: 0;
  margin: 20px 0;
}

.menu-item {
  padding: 12px 0;
  text-align: center;
  line-height: 1.3;
}

.menu-item a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.3;
}

/* ホバーエフェクトは削除 */

.menu-item.primary {
  color: var(--color-red);
  font-size: 15px;
}

.menu-item.secondary {
  color: var(--color-blue);
}

.menu-item.tertiary {
  color: var(--color-cyan);
}

.menu-item.quaternary {
  color: var(--color-hot-pink);
}

/* =============================================
   フッター
   ============================================= */

.footer {
  text-align: center;
  padding: 40px 0 30px;
  border-top: 2px dashed var(--color-hot-pink);
  margin-top: 50px;
}

.footer-text {
  font-size: 13px;
  color: var(--color-hot-pink);
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-link {
  display: inline-block;
  color: var(--color-magenta);
  font-size: 14px;
  font-weight: 900;
  margin-top: 10px;
  text-decoration: underline;
}

/* =============================================
   レスポンシブ調整
   ============================================= */

/* 小型スマホ (320px-374px) */
@media (max-width: 374px) {
  .logo-image {
    max-width: 180px;
  }
  
  .header-banner {
    font-size: 12px;
    padding: 10px 15px;
  }
  
  .content-text {
    font-size: 13px;
  }
}

/* 中型スマホ (375px-413px) */
@media (min-width: 375px) and (max-width: 413px) {
  .logo-image {
    max-width: 200px;
  }
}

/* 大型スマホ (414px以上) */
@media (min-width: 414px) {
  .logo-image {
    max-width: 220px;
  }
  
  .header-banner {
    font-size: 15px;
  }
  
  .content-text {
    font-size: 15px;
  }
}

/* 横画面対応 */
@media (orientation: landscape) {
  .logo-section {
    padding: 20px 0 10px;
  }
  
  .main-content {
    padding: 10px 0;
  }
}

/* =============================================
   ユーティリティクラス
   ============================================= */

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 700;
}

.text-extra-bold {
  font-weight: 900;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
