/* ==========================================================
   service.css — 専用LP（service/ai・app・hp・print）共通スタイル
   各LPの<style>から共通部分を抽出（2026-06-12）。
   ⚠️ ここを変更すると全専用LPに反映される。ページ固有の
   スタイルは各 index.html の <style> に残してある。
   ========================================================== */

/* ヒーロー */
.sub-hero {
  background: linear-gradient(135deg, #FFF8F2 0%, #FFE8D6 100%);
  padding: 60px 0 50px;
  text-align: center;
}
.sub-hero h1 { font-size: clamp(24px, 5vw, 40px); margin: 0 0 16px; color: #2B2B2B; }
.sub-hero h1 em { color: #E8743C; font-style: normal; }
.sub-hero .lead { font-size: 16px; line-height: 1.7; color: #444; max-width: 720px; margin: 0 auto; }
.sub-hero .price-flag {
  display: inline-block; background: #C8443C; color: #fff;
  padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: bold;
  margin-top: 20px;
}
.sub-hero .hero-compare {
  max-width: 640px; margin: 14px auto 0;
  font-size: 14px; line-height: 1.7; color: #555;
}
.sub-hero .hero-compare__old { color: #999; text-decoration: line-through; }
.sub-hero .hero-compare__new { color: #C8443C; font-size: 17px; }

/* セクション */
.sub-section { padding: 50px 0; }
.sub-section.alt { background: #FAFAFA; }
.sub-section h2 {
  text-align: center; font-size: clamp(20px, 4vw, 28px);
  margin: 0 0 12px; color: #2B2B2B;
}
.sub-section .section-lead { text-align: center; color: #666; margin-bottom: 32px; }

/* カタログ（できること一覧） */
.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.catalog-item {
  background: #fff; border-left: 4px solid #E8743C; padding: 16px 20px;
  border-radius: 4px;
}
.catalog-item h4 { margin: 0 0 8px; font-size: 15px; color: #E8743C; }
.catalog-item p { margin: 0; font-size: 13px; line-height: 1.6; color: #444; }

/* なぜ安いか（共通訴求コピー枠） */
.why-cheap {
  background: #FFF8F2; border: 2px solid #E8743C; border-radius: 8px;
  padding: 28px 24px; max-width: 720px; margin: 0 auto;
}
.why-cheap h3 { margin: 0 0 12px; color: #C8443C; font-size: 18px; }
.why-cheap p { margin: 0 0 8px; line-height: 1.75; }
.why-cheap .em { color: #C8443C; font-weight: bold; }

/* CTA */
.cta-block { text-align: center; padding: 50px 0; }
.cta-block .btn {
  display: inline-block; padding: 14px 32px; background: #E8743C;
  color: #fff; text-decoration: none; border-radius: 6px;
  font-weight: bold; font-size: 16px;
}
.cta-block .btn:hover { background: #C8443C; }
.cta-block .back { display: block; margin-top: 16px; font-size: 13px; color: #666; }
.cta-block .back a { color: #E8743C; }

/* FAQ */
.simple-faq { max-width: 720px; margin: 0 auto; }
.simple-faq details {
  background: #fff; border: 1px solid #ddd; border-radius: 4px;
  padding: 12px 16px; margin-bottom: 8px;
}
.simple-faq summary { font-weight: bold; cursor: pointer; }
.simple-faq details p { margin: 8px 0 0; font-size: 14px; line-height: 1.65; }

/* 撮影パック（黒枠・hp/printで使用） */
.photo-pack {
  background: #2B2B2B; color: #fff; border-radius: 8px;
  padding: 28px 24px; max-width: 720px; margin: 0 auto;
}
.photo-pack h3 { color: #FFB07C; margin: 0 0 12px; font-size: 18px; }
.photo-pack p { margin: 0 0 8px; line-height: 1.7; }
.photo-pack .pp-price { color: #FFD9C2; font-weight: bold; }

/* アプリ画面ギャラリー（app/ai専用LPで使用）
   スマホ縦・PC横・タブレットの混在比率でも崩れないよう、
   固定高フレーム＋クリーム余白＋object-fit:contain で見せる。 */
.shot-heading {
  text-align: center; font-size: clamp(18px, 3.5vw, 22px);
  margin: 44px 0 6px; color: #2B2B2B;
}
.shot-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 880px; margin: 0 auto;
}
.shot-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
@media (max-width: 700px) {
  .shot-grid, .shot-grid--3 { grid-template-columns: 1fr; }
}
.shot {
  margin: 0; background: #fff; border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); overflow: hidden;
}
.shot img {
  display: block; width: 100%; height: 300px; object-fit: contain;
  background: #F5EFE6; padding: 12px; box-sizing: border-box;
}
.shot figcaption {
  padding: 12px 16px; font-size: 14px; font-weight: bold;
  color: #2B2B2B; text-align: center; border-top: 1px solid #eee;
}
.shot figcaption small {
  display: block; font-weight: normal; font-size: 12px;
  color: #777; margin-top: 3px;
}
.shot-note { text-align: center; margin-top: 20px; font-size: 12px; color: #888; }
