/* ===================================
   ataru-uranai タロットツール共通CSS v2
   淡ラベンダー×ピンク・女性向け
   =================================== */

/* ── リセット：SWELLテーマのH2装飾を完全に打ち消す ── */
.post_content h2.au-hdr-ttl,
.au-wrap h2.au-hdr-ttl,
h2.au-hdr-ttl {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  padding: 0 !important;
  margin: 0 0 10px !important;
  color: #4A3F6B !important;
  font-size: 22px !important;
  line-height: 1.5 !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: none !important;
}

.post_content h2.au-hdr-ttl::before,
.post_content h2.au-hdr-ttl::after,
.au-wrap h2.au-hdr-ttl::before,
.au-wrap h2.au-hdr-ttl::after,
h2.au-hdr-ttl::before,
h2.au-hdr-ttl::after {
  display: none !important;
  content: none !important;
  border: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ── 全体ラップ ── */
.au-wrap {
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: #4A3F6B;
  line-height: 1.8;
}

/* ── ヘッダー ── */
.au-hdr {
  text-align: center;
  padding: 32px 20px 24px;
  background: #FAF7FF;
}

.au-hdr-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F48FB1, #CE93D8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .06em;
}

.au-hdr-sub {
  font-size: 13px;
  color: #9E8EC0;
  line-height: 1.7;
}

/* ── ステップ（ドット型） ── */
.au-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.au-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E8DEF8;
  transition: all .3s;
}

.au-step-dot.active {
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #B39DDB, #F48FB1);
}

.au-step-dot.done {
  background: #CE93D8;
}

/* ── プログレスバー ── */
.au-prog {
  padding: 10px 20px;
  background: #FAF7FF;
}

.au-prog-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #B39DDB;
  font-weight: 600;
  margin-bottom: 5px;
}

.au-prog-bg {
  background: #EDE7F6;
  border-radius: 3px;
  height: 4px;
  overflow: hidden;
}

.au-prog-fill {
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #B39DDB, #F48FB1);
  transition: width .5s ease;
}

/* ── フェーズ切り替え ── */
.au-phase { display: none; }
.au-phase.active { display: block; animation: auFadeUp .5s ease; }

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

/* ── カード面（白背景） ── */
.au-card {
  background: #fff;
  padding: 28px 20px;
}

/* ── フォーカスステップ ── */
.au-focus-icon {
  text-align: center;
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  animation: auFloat 3s ease-in-out infinite;
}

@keyframes auFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.au-msg {
  text-align: center;
  font-size: 14px;
  color: #7E6FAD;
  line-height: 1.9;
  margin: 12px 0;
}

.au-focus-input {
  margin-bottom: 20px;
}

.au-focus-input label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #B39DDB;
  margin-bottom: 6px;
}

.au-focus-input textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #EDE7F6;
  border-radius: 8px;
  background: #FDFBFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #4A3F6B;
  resize: none;
  transition: border-color .3s;
  line-height: 1.6;
}

.au-focus-input textarea:focus {
  outline: none;
  border-color: #CE93D8;
  background: #fff;
}

.au-focus-input textarea::placeholder { color: #D0C4E8; }

/* ── ボタン ── */
.au-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 16px auto 0;
  padding: 14px 24px;
  background: linear-gradient(135deg, #B39DDB, #CE93D8);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all .25s;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(179,157,219,0.3);
}

.au-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(179,157,219,0.45);
}

/* ── シャッフル演出エリア ── */
.au-shuffle-area {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.au-shuffle-card {
  position: absolute;
  width: 52px;
  height: 78px;
  border-radius: 6px;
  background: linear-gradient(135deg, #5C3D99, #7E57C2);
  border: 1.5px solid #B39DDB;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: all .6s cubic-bezier(.25,.46,.45,.94);
}

.au-shuffle-card::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(244,143,177,.35);
}

.au-shuffle-card.scattering {
  transition: all .8s cubic-bezier(.34,1.56,.64,1);
}

.au-shuffle-status {
  font-weight: 500;
}

/* ── カード選択：グリッド配置 ── */
.au-card-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 6px;
  padding: 20px 12px;
  max-width: 600px;
  margin: 0 auto;
}

.au-grid-card {
  aspect-ratio: 2/3;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #5C3D99, #7E57C2);
  border: 1.5px solid #B39DDB;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  overflow: hidden;
}

.au-grid-card::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(244,143,177,.2);
  border-radius: 4px;
  pointer-events: none;
}

.au-grid-card::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(244,143,177,.35);
  pointer-events: none;
}

.au-grid-card:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 8px 24px rgba(126,87,194,.35);
  border-color: #F48FB1;
}

.au-grid-card.picked {
  transform: scale(1.15);
  border-color: #F48FB1;
  box-shadow: 0 0 20px rgba(244,143,177,.5);
  z-index: 10;
}

.au-grid-card.dimmed {
  opacity: .25;
  pointer-events: none;
  transform: scale(.95);
}

.au-grid-hint {
  text-align: center;
  font-size: 13px;
  color: #B39DDB;
  margin: 16px 0 4px;
  font-weight: 500;
}

/* ── フリップ演出用（選択後） ── */
.au-flip-area {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.au-flip-card {
  width: 140px;
  height: 224px;
  perspective: 800px;
  cursor: pointer;
}

.au-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(.4,.0,.2,1);
}

.au-flip-card.flipped .au-flip-inner {
  transform: rotateY(180deg);
}

.au-flip-back,
.au-flip-face {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  backface-visibility: hidden;
  overflow: hidden;
}

.au-flip-back {
  background: linear-gradient(135deg, #5C3D99, #7E57C2);
  border: 2px solid #B39DDB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-flip-back::after {
  content: '✦';
  font-size: 36px;
  color: rgba(244,143,177,.4);
}

.au-flip-face {
  transform: rotateY(180deg);
  border: 2px solid #CE93D8;
  background: #fff;
}

.au-flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.au-flip-msg {
  text-align: center;
  font-size: 13px;
  color: #B39DDB;
  margin-top: 12px;
  animation: auFloat 2s ease-in-out infinite;
}

/* ── 結果画面 ── */
.au-result-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(179,157,219,0.2);
  margin-bottom: 20px;
}

/* ── 結果：カード大表示 ── */
.au-reveal-card {
  width: 160px;
  height: 256px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #CE93D8;
  box-shadow: 0 4px 20px rgba(179,157,219,.3);
}

.au-reveal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 位置バッジ ── */
.au-position-badge {
  text-align: center;
  margin: 12px 0;
}

.au-position-badge span {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.au-position-badge .upright {
  background: #EDE7F6;
  color: #7E57C2;
}

.au-position-badge .reversed {
  background: #FCE4EC;
  color: #E91E63;
}

/* ── 結果タイトル ── */
.au-result-title {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #4A3F6B;
  margin: 8px 0;
  line-height: 1.5;
}

.au-summary-badge {
  text-align: center;
  margin: 0 0 20px;
}

.au-summary-text {
  display: inline-block;
  background: linear-gradient(135deg, #B39DDB 0%, #F48FB1 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
}

/* ── スコア ── */
.au-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.au-score-item {
  background: #FAF7FF;
  border-radius: 10px;
  padding: 14px;
}

.au-score-label {
  font-size: 11px;
  color: #B0A0CC;
  margin-bottom: 6px;
}

.au-score-bar {
  background: #EDE7F6;
  border-radius: 3px;
  height: 6px;
  margin-bottom: 6px;
  overflow: hidden;
}

.au-score-fill {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, #B39DDB, #F48FB1);
  transition: width 1.2s ease;
}

.au-score-val {
  font-size: 18px;
  font-weight: 700;
  color: #7E57C2;
}

.au-score-unit {
  font-size: 11px;
  font-weight: 400;
  color: #C5B8E0;
}

/* ── セクションタイトル ── */
.au-sec-ttl {
  font-size: 13px;
  font-weight: 700;
  color: #B39DDB;
  margin: 20px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #CE93D8;
}

.au-reading {
  font-size: 14px;
  color: #4A3F6B;
  line-height: 2;
}

.au-reading p { margin: 0 0 16px; }

/* ── アコーディオン ── */
.au-accordion { margin-top: 20px; }

.au-accordion-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #FAF7FF;
  border: 1px solid #EDE7F6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #B39DDB;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all .25s;
  text-align: center;
}

.au-accordion-btn:hover { background: #EDE7F6; }

.au-accordion-body { overflow: hidden; transition: max-height .5s ease; }
.au-detail-section { padding: 16px 0 4px; }

.au-detail-ttl {
  font-size: 13px;
  font-weight: 700;
  color: #9575CD;
  margin: 14px 0 6px;
  padding-left: 10px;
  border-left: 3px solid #E0D6F0;
}

.au-detail-ttl:first-child { margin-top: 0; }

.au-detail-text {
  font-size: 13px;
  color: #5A4F7B;
  line-height: 1.9;
  margin: 0 0 4px;
}

/* ── シェア ── */
.au-share { text-align: center; margin: 24px 0 16px; }

.au-share-ttl {
  font-size: 12px;
  color: #B0A0CC;
  margin-bottom: 10px;
}

.au-share-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.au-sbtn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.au-sbtn-tw { background: #1DA1F2; color: #fff; }
.au-sbtn-ln { background: #06C755; color: #fff; }
.au-sbtn:hover { opacity: .85; }

/* ── リトライ ── */
.au-retry {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 12px auto 0;
  padding: 10px 20px;
  background: transparent;
  color: #B39DDB;
  border: 1px solid #EDE7F6;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all .2s;
}

.au-retry:hover { background: #FAF7FF; border-color: #CE93D8; }

/* ── レスポンシブ ── */
@media (max-width: 480px) {
  .au-card-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 16px 8px;
  }
  .au-grid-card::after { font-size: 8px; }
  .au-flip-card { width: 120px; height: 192px; }
  .au-reveal-card { width: 130px; height: 208px; }
  .au-scores { grid-template-columns: 1fr; }
  .au-hdr-ttl { font-size: 19px !important; }
}

/* ── ゴールド系バリエーション（金運ツール用）── */
.au-wrap--gold { color: #5C4A1E; }
.au-hdr--gold { background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%); }
.au-hdr-badge--gold { background: linear-gradient(135deg, #FFB300, #FFC107); }
.post_content h2.au-hdr-ttl--gold,
h2.au-hdr-ttl--gold { color: #5C4A1E !important; }
.au-hdr-sub--gold { color: #8D7540; }
.au-step-dot--gold { background: #FFE082; }
.au-step-dot--gold.active { background: linear-gradient(135deg, #FFB300, #FFC107); width: 28px; border-radius: 5px; }
.au-step-dot--gold.done { background: #FFB300; }
.au-prog--gold { background: #FFFDE7; }
.au-prog--gold .au-prog-row { color: #C49000; }
.au-prog-fill--gold { background: linear-gradient(90deg, #FFB300, #FFC107); }
.au-btn--gold { background: linear-gradient(135deg, #FFB300, #FFC107); color: #5C4A1E; box-shadow: 0 4px 16px rgba(255,179,0,0.3); }
.au-btn--gold:hover { box-shadow: 0 6px 24px rgba(255,179,0,0.45); }
.au-shuffle-card--gold { background: linear-gradient(135deg, #8D6E00, #C49000); border-color: #FFB300; }
.au-shuffle-card--gold::after { color: rgba(255,215,0,.4); }
.au-grid-card--gold { background: linear-gradient(135deg, #8D6E00, #C49000); border-color: #FFB300; }
.au-grid-card--gold::before { border-color: rgba(255,215,0,.25); }
.au-grid-card--gold::after { color: rgba(255,215,0,.4); }
.au-grid-card--gold:hover { box-shadow: 0 8px 24px rgba(255,179,0,.35); border-color: #FFD54F; }
.au-grid-card--gold.picked { border-color: #FFD54F; box-shadow: 0 0 20px rgba(255,215,0,.5); }
.au-flip-back--gold { background: linear-gradient(135deg, #8D6E00, #C49000); border-color: #FFB300; }
.au-flip-back--gold::after { color: rgba(255,215,0,.4); }
.au-result-card--gold { box-shadow: 0 4px 16px rgba(255,179,0,0.15); }
.au-summary-text--gold { background: linear-gradient(135deg, #FFB300, #FFC107); color: #5C4A1E; }
.au-score-item--gold { background: #FFFDE7; }
.au-score-fill--gold { background: linear-gradient(90deg, #FFB300, #FFC107); }
.au-score-val--gold { color: #C49000; }
.au-sec-ttl--gold { color: #C49000; border-left-color: #FFB300; }

/* ── ディープブルー×パープル系バリエーション（総合運ツール用）── */
.au-wrap--blue { color: #2C2455; }
.au-hdr--blue { background: linear-gradient(135deg, #E8EAF6 0%, #D1C4E9 100%); }
.au-hdr-badge--blue { background: linear-gradient(135deg, #5C6BC0, #7E57C2); }
.post_content h2.au-hdr-ttl--blue,
h2.au-hdr-ttl--blue { color: #2C2455 !important; }
.au-hdr-sub--blue { color: #5C5480; }
.au-step-dot--blue { background: #C5CAE9; }
.au-step-dot--blue.active { background: linear-gradient(135deg, #5C6BC0, #7E57C2); width: 28px; border-radius: 5px; }
.au-step-dot--blue.done { background: #5C6BC0; }
.au-prog--blue { background: #F5F3FF; }
.au-prog--blue .au-prog-row { color: #5C6BC0; }
.au-prog-fill--blue { background: linear-gradient(90deg, #5C6BC0, #7E57C2); }
.au-btn--blue { background: linear-gradient(135deg, #5C6BC0, #7E57C2); color: #fff; box-shadow: 0 4px 16px rgba(92,107,192,0.3); }
.au-btn--blue:hover { box-shadow: 0 6px 24px rgba(92,107,192,0.45); }
.au-shuffle-card--blue { background: linear-gradient(135deg, #283593, #4527A0); border-color: #7986CB; }
.au-shuffle-card--blue::after { color: rgba(159,168,218,.4); }
.au-grid-card--blue { background: linear-gradient(135deg, #283593, #4527A0); border-color: #7986CB; }
.au-grid-card--blue::before { border-color: rgba(159,168,218,.25); }
.au-grid-card--blue::after { color: rgba(159,168,218,.4); }
.au-grid-card--blue:hover { box-shadow: 0 8px 24px rgba(92,107,192,.35); border-color: #9FA8DA; }
.au-grid-card--blue.picked { border-color: #9FA8DA; box-shadow: 0 0 20px rgba(92,107,192,.5); }
.au-flip-back--blue { background: linear-gradient(135deg, #283593, #4527A0); border-color: #7986CB; }
.au-flip-back--blue::after { color: rgba(159,168,218,.4); }
.au-result-card--blue { box-shadow: 0 4px 16px rgba(92,107,192,0.15); }
.au-summary-text--blue { background: linear-gradient(135deg, #5C6BC0, #7E57C2); }
.au-score-item--blue { background: #F5F3FF; }
.au-score-fill--blue { background: linear-gradient(90deg, #5C6BC0, #7E57C2); }
.au-score-val--blue { color: #5C6BC0; }
.au-sec-ttl--blue { color: #5C6BC0; border-left-color: #7E57C2; }

/* ── おみくじツール v2 ── */
.au-omikuji-tube-wrap {
  display: inline-block;
  margin: 10px 0 0;
}
.au-omikuji-img {
  width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.12));
}
.au-omikuji-img--shake {
  animation: omShake .12s ease-in-out infinite alternate;
}
@keyframes omShake {
  0% { transform: rotate(-6deg) translateX(-6px); }
  100% { transform: rotate(6deg) translateX(6px); }
}
.au-omikuji-img--done { animation: none; transform: rotate(0); }
.au-omikuji-btn { max-width: 280px; font-size: 17px; padding: 16px 32px; }

/* ── 結果：レベル表示（大きく華やか） ── */
.au-omikuji-result {
  background: #fff;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
  margin-bottom: 24px;
}
.au-omikuji-level {
  text-align: center;
  padding: 40px 20px 32px;
  position: relative;
  overflow: hidden;
}
.au-omikuji-level::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.4) 0%, transparent 70%);
  pointer-events: none;
}
.au-omikuji-emoji {
  display: block;
  font-size: 64px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.15));
}
.au-omikuji-level-text {
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: .15em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.au-omikuji-level-desc {
  display: block;
  font-size: 15px;
  font-weight: 600;
  opacity: .85;
}

/* ── セクション（アイコン付き） ── */
.au-omikuji-sections { padding: 24px 20px 8px; }
.au-omikuji-sec {
  margin-bottom: 24px;
  background: #FAFAFE;
  border-radius: 12px;
  padding: 18px;
}
.au-omikuji-sec-ttl {
  font-size: 15px;
  font-weight: 800;
  padding-left: 12px;
  border-left: 4px solid;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.au-omikuji-sec-text {
  font-size: 14px;
  color: #4A3F6B;
  line-height: 2;
  white-space: pre-line;
  margin: 0;
}

/* ── ラッキー情報（カラフルカード） ── */
.au-omikuji-lucky {
  padding: 0 20px 24px;
}
.au-omikuji-lucky-title {
  font-size: 16px;
  font-weight: 800;
  color: #7E57C2;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: .08em;
  padding: 10px 20px;
  background: linear-gradient(135deg, #EDE7F6, #F3E5F5);
  border-radius: 50px;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.au-omikuji-lucky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.au-omikuji-lucky-item {
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #E8DEF8;
}
.au-omikuji-lucky-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}
.au-omikuji-lucky-label {
  display: block;
  font-size: 11px;
  color: rgba(0,0,0,.45);
  margin-bottom: 4px;
  font-weight: 600;
}
.au-omikuji-lucky-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

/* ── メッセージ（華やかボックス） ── */
.au-omikuji-message {
  margin: 0 20px 24px;
  padding: 24px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EDE7F6, #F3E5F5);
  border: none;
  text-align: center;
  position: relative;
}
.au-omikuji-message::before {
  content: '💌';
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}
.au-omikuji-message-title {
  font-size: 16px;
  font-weight: 800;
  color: #7E57C2;
  margin-bottom: 12px;
  letter-spacing: .08em;
  padding: 8px 24px;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  border: 1.5px solid #CE93D8;
}
.au-omikuji-message p {
  font-size: 16px;
  color: #4A3F6B;
  line-height: 1.9;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 480px) {
  .au-omikuji-img { width: 260px; }
  .au-omikuji-level-text { font-size: 42px; }
  .au-omikuji-emoji { font-size: 52px; }
}

/* ── 数秘術フォーム ── */
.au-nm-form-group { }
.au-nm-label {
  font-size: 14px;
  font-weight: 700;
  color: #4A3F6B;
  margin-bottom: 8px;
}
.au-nm-selects {
  display: flex;
  gap: 8px;
}
.au-nm-select {
  flex: 1;
  padding: 12px 8px;
  border: 1.5px solid #E8DEF8;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #4A3F6B;
  background: #FDFBFF;
  appearance: auto;
}
.au-nm-select:focus {
  outline: none;
  border-color: #CE93D8;
  background: #fff;
}
