@charset "UTF-8";

/* ==========================================
   1. 変数定義（カラーパレット）
========================================== */
:root {
  --bg-color: #FDFBF7;
  --text-color: #4A3F35;
  --accent-color: #E67E22;
  --line-color: #06C755;
}

/* ==========================================
   2. ベース設定（index.htmlを基準）
========================================== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 2.0; 
  font-size: 18px; 
  padding-top: 80px; /* ← スマホ用の余白（そのまま） */
  padding-bottom: 90px; 
}

/* ▼▼ 追加：PC画面（画面幅768px以上）の時の設定 ▼▼ */
@media (min-width: 768px) {
  body {
    padding-bottom: 10px; /* ← PC用に余白を減らす（実際の画面を見て微調整してください） */
  }
}

/* ==========================================
   3. ヘッダー・ナビゲーション・フッター
========================================== */
.top-bar {
  background-color: #4A3F35;
  color: #fff;
  font-size: 0.95rem;
  padding: 5px 0;
}

.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ==========================================
   4. 共通レイアウト・セクション設定
========================================== */
.section-padding {
  padding: 70px 0;
}

.section-title {
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.7rem;
}

/* ヒーローセクション（ファーストビュー） */
.hero-section {
  background: linear-gradient(rgba(253, 251, 247, 0.85), rgba(253, 251, 247, 0.65)), url('img/nanayo_main01.png');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.hero-title {
  font-weight: 900;
  line-height: 1.6;
}

.highlight-text {
  background: linear-gradient(transparent 60%, #ffe0b2 60%);
  font-weight: bold;
}

.micro-copy {
  font-size: 0.95rem;
  color: #6c757d;
  display: block;
  margin-top: 8px;
}

/* ==========================================
   5. ボタン・追従バー関連
========================================== */
.btn-line {
  background-color: var(--line-color);
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-line:hover {
  background-color: #05a546;
  transform: scale(1.05);
}

.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 12px 15px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-bottom-bar .btn-line {
  width: 100%;
  max-width: 400px;
  font-size: 1.1rem;
  padding: 15px 20px;
  box-shadow: 0 4px 10px rgba(6, 199, 85, 0.4);
}

/* ==========================================
   6. 各種カード・ボックスデザイン
========================================== */
.card-custom {
  background-color: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  height: 100%;
}

.benefit-card {
  border-left: 6px solid var(--accent-color);
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

/* 吹き出し風デザイン */
.speech-bubble {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 15px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 2px solid #ffdfd3;
  display: inline-block;
  width: 100%;
}
.speech-bubble::before {
  content: '';
  position: absolute;
  top: 20px; left: -14px;
  border-top: 10px solid transparent; border-right: 14px solid #ffdfd3; border-bottom: 10px solid transparent;
  z-index: 0;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  top: 22px; left: -10px;
  border-top: 8px solid transparent; border-right: 12px solid #fff; border-bottom: 8px solid transparent;
  z-index: 1;
}

/* お客様の声 */
.voice-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  border: 2px solid var(--accent-color);
  margin-top: 25px;
}
.voice-card::after {
  content: ''; position: absolute; top: -12px; left: 40px; border-bottom: 12px solid #fff; border-left: 12px solid transparent; border-right: 12px solid transparent; z-index: 1;
}
.voice-card::before {
  content: ''; position: absolute; top: -15px; left: 38px; border-bottom: 15px solid var(--accent-color); border-left: 14px solid transparent; border-right: 14px solid transparent; z-index: 0;
}
.voice-icon {
  position: absolute; top: -40px; left: 20px; font-size: 3.5rem; color: var(--accent-color); background-color: #FDFBF7; border-radius: 50%;
}
.voice-badge {
  background-color: var(--accent-color); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; display: inline-block; margin-bottom: 10px;
}

/* ステップ図 */
.step-box {
  background-color: #fff; border: 2px solid #ffdfd3; border-radius: 15px; padding: 25px 20px 20px 20px; margin-bottom: 30px; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.step-number {
  position: absolute; top: -18px; left: 20px; background-color: var(--accent-color); color: #fff; font-weight: 900; padding: 5px 20px; border-radius: 20px; font-size: 1rem; box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

/* プロフィール画像 */
.profile-img {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ==========================================
   7. メニュー・料金表関連（menu.html / index.html 統合）
========================================== */
.pricing-card-mini {
  background-color: #fff; border-radius: 15px; padding: 25px 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); height: 100%; border: 2px solid transparent; text-align: center; position: relative;
}
.pricing-card-mini.popular {
  border: 3px solid var(--accent-color); transform: scale(1.02); z-index: 1;
}

.pricing-card {
  background-color: #fff; border-radius: 20px; padding: 30px 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); height: 100%; position: relative; border: 2px solid transparent; transition: transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.popular {
  border: 4px solid var(--accent-color); box-shadow: 0 10px 25px rgba(230, 126, 34, 0.15); transform: scale(1.03); z-index: 1;
}
@media (max-width: 768px) { .pricing-card.popular { transform: scale(1); } }

.popular-badge {
  background-color: var(--accent-color); color: #fff; font-weight: bold; padding: 6px 20px; border-radius: 30px; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 1rem; white-space: nowrap;
}
.price-strike { text-decoration: line-through; color: #999; font-size: 1.1rem; }
.price-highlight { color: #d9534f; font-size: 2rem; font-weight: 900; }

.feature-list { list-style: none; padding-left: 0; text-align: left; font-size: 1rem; }
.feature-list li { margin-bottom: 12px; padding-left: 1.8em; position: relative; line-height: 1.5; }
.feature-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent-color); font-size: 1.1rem; }
.feature-list.gray li::before { color: #999; }

.secret-box { background-color: #f0f8ff; border-radius: 15px; padding: 30px; margin-top: 40px; }
.option-box { background-color: #fff9f2; border-radius: 15px; padding: 25px; margin-top: 20px; border: 1px dashed #ccc; }
.gift-box { background-color: #fff4f4; border: 2px solid #ffb3b3; border-radius: 12px; padding: 15px; margin-top: 20px; }

/* ==========================================
   8. アコーディオン・FAQ（faq.html / index.html 統合）
========================================== */
.accordion-item { border: none; border-bottom: 1px solid #eee; border-radius: 0 !important; background-color: transparent; margin-bottom: 10px; }
.accordion-button { background-color: #fff; color: var(--text-color); font-weight: bold; border-radius: 12px !important; padding: 20px; box-shadow: 0 3px 10px rgba(0,0,0,0.02); }
.accordion-button:not(.collapsed) { background-color: #fff3cd; color: var(--text-color); font-weight: bold; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,.125); }
.accordion-body { background-color: #FDFBF7; padding: 20px; color: #555; font-size: 0.95rem; border-radius: 0 0 12px 12px; }
.qa-icon-q { color: var(--accent-color); font-size: 1.2rem; margin-right: 8px; }
.qa-icon-a { color: #0056b3; font-weight: bold; font-size: 1.2rem; margin-right: 8px; }

/* ==========================================
   9. スマホ検索解説セクション用
========================================== */
.main-container { max-width: 42rem; margin: 0 auto; }
.bg-warm-orange { background-color: #f5a623; color: #ffffff; }
.bg-icon { right: -1.5rem; bottom: -1.5rem; font-size: 9rem; color: rgba(255, 255, 255, 0.2); transform: rotate(-12deg); }
.balloon-left { border-top-left-radius: 0 !important; }
.balloon-right { border-top-right-radius: 0 !important; }
.balloon-icon { position: absolute; top: -14px; background: white; border-radius: 50%; padding: 8px; box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075); border: 1px solid #e9ecef; }
.balloon-icon.left { left: -14px; }
.balloon-icon.right { right: -14px; }
.icon-circle { width: 28px; height: 28px; font-size: 14px; }
.text-underline-warm { text-decoration: underline; text-decoration-color: #fcd34d; text-decoration-thickness: 4px; text-underline-offset: 4px; }
.border-bottom-blue { border-bottom: 2px solid #bae0ff; }

/* ==========================================
   10. 特定商取引法ページ用テーブル（インラインスタイルをCSS化）
========================================== */
.tokushoho-table {
  width: 100%; border-collapse: collapse; border: 1px solid #e8e4d9; background-color: #ffffff; box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.tokushoho-table th {
  width: 30%; padding: 15px 20px; background-color: #FDFBF7; border: 1px solid #e8e4d9; text-align: left; vertical-align: top; font-weight: bold;
}
.tokushoho-table td {
  padding: 15px 20px; border: 1px solid #e8e4d9; vertical-align: top;
}

/* ==========================================
   11. アニメーション全般
========================================== */
.fade-in-up { animation: fadeInUp 1.2s ease-out forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.3s; }
.delay-300 { animation-delay: 0.5s; }

.btn-float { animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0px); } }

@keyframes bounce-sm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15%); } }
.animate-bounce { animation: bounce-sm 1s infinite; }

@keyframes float-sm { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.animate-float { animation: float-sm 2.5s ease-in-out infinite; }

/* ==========================================
   12. 画像レスポンシブ設定
========================================== */
img[src*="QRcode.png"], img[src*="report_sample.png"], img[src*="AI_search.png"] {
  width: 100%; max-width: 300px; height: auto; display: block; margin: 0 auto 1.5rem auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  img[src*="QRcode.png"] { width: 25%; max-width: 200px; }
  img[src*="report_sample.png"] { width: 50%; max-width: 400px; }
  img[src*="AI_search.png"] { width: 60%; max-width: 550px; }
}