/*
Theme Name: 害獣プロガード
Theme URI: https://example.com
Description: 害獣駆除サービスのランディングページテーマ
Version: 1.0.0
Author: Your Name
Author URI: https://example.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gaijyu-pro-guard
*/

/* style.css - LP v2: Figma-alike sections (mobile-first) */
:root {
  --page-w: 430px;
  --bg: #fff;
  --dark: #262626;
  --muted: #666;
  --accent-red: #e23b2e;
  --green: #1fb07a;
  --card: #ffffff;
  --box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  --g: 14px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", Arial, sans-serif;
  background: var(--bg);
  color: #111;
  -webkit-text-size-adjust: 100%;
}

/* container */
.page-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding-bottom: 75px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 60;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--g);
}

.logo {
  font-weight: 900;
  font-size: 16px;
}

/* --- Hamburger Menu (追加) --- */

/* ヘッダー内のボタンとナビを配置 */
.header-inner {
  position: relative;
}

.hamburger-btn {
  position: relative;
  z-index: 110; /* ナビパネルより手前 */
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 10px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger-btn span:nth-child(1) {
  top: 14px;
}
.hamburger-btn span:nth-child(2) {
  top: 21px;
}
.hamburger-btn span:nth-child(3) {
  top: 28px;
}

/* メニューが開いている時のボタン（×印） */
.menu-open .hamburger-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ×印の色（暗い背景でも見えるように白） */
.menu-open .hamburger-btn span {
  background: #fff;
}


/* ナビゲーションパネル（通常時） */
.global-nav {
  position: fixed;
  top: 0;
  right: -100%; /* 右側に隠す */
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: rgba(11, 39, 64, 0.95); /* フッターの色を半透明に */
  color: #fff;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
  padding-top: 80px; /* ヘッダーの高さ分 */
}
/* メニューが開いている時のパネル */
.menu-open .global-nav {
  transform: translateX(-100%);
}

.global-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.global-nav a {
  display: block;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* ヘッダーが sticky のため、アンカーリンクがヘッダーに隠れるのを防ぐ */
/* (ヘッダーの高さを約60pxと想定) */
section[id] {
  scroll-margin-top: 60px; 
}


/* --- PC表示ではハンバーガーを非表示 --- */
@media (min-width: 768px) {
  
  /* PCではハンバーガーボタンを非表示に */
  .hamburger-btn {
    display: none;
  }
  /* PCではナビパネルも非表示に */
  .global-nav {
    display: none;
  }
}

/* KV */
.kv-image {
  width: 100%;
  display: block;
}

/* Worries */
.worries {
  background: #262626;
  padding: 20px 20px;
  text-align: center;
}

.worries-box {
  background: #fff;
  margin-top: 20px;
  padding: 20px;
  border-radius: 18px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.worry-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.worry-items li {
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.worry-items li:last-child {
  border-bottom: none;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #2d2d2d;
  color: #fff;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 900;
  flex: 0 0 30px;
  margin-right: 9px;
}

.w-text {
  color: var(--accent-red);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
}

/* --- Section Common (Solution, Reasons, Flow, Testi, FAQ) --- */

/* 左側の黒いグラデーション */
.solution-promo {
  position: relative;
  /* ↓ 背景を斜めのグラデーションに変更 */
  background: linear-gradient(135deg, #222, #F3D32D);
  overflow: hidden;
  padding: 20px;
}

.solution-bnr {
  width: 100%;
  height: auto;
  display: block;
}

/* 共通の背景色・パディング */
.reasons,
.testimonials {
  background: #F3D32D;
  padding: 20px;
}

.flow,
.faq {
  background: #FEF9E4;
  padding: 20px;
}

/* 各セクションのタイトル (中央揃え) */
.reasons .section-title,
.flow .section-title,
.testimonials .section-title,
.faq .section-title {
  text-align: center;
  margin: 20px 0;
}

/* --- Reasons --- */
.reasons {
  text-align: left;
}

.reason-list {
  display: grid;
  gap: 12px;
}

.reason {
  display: block;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.reason-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reason-number {
  width: 36px;
  height: 36px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: none;
}

.reason-title {
  font-size: 20px;
  letter-spacing:0.1em;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: var(--dark);
}

.reason-img {
  width: 100%; /* 横幅をカードに合わせる */
  height: auto; /* 縦横比を維持 */
  display: block;
  border-radius: 8px; /* プレースホルダーに合わせて角丸を適用 */
  margin-bottom: 12px; /* 画像と下のテキストとの間隔 */
}

/* 元のh3はHTML構造変更により不要 */
.reason-body h3 {
  display: none;
}

.reason-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Flow --- */
.flow-list {
  margin: 0;
  padding: 0;
  color: var(--dark);
  display: grid;
  gap: 16px;
}

/* 元のliはHTML構造変更により不要 */
.flow-list li {
  display: none;
}

.flow-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.flow-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.flow-icon-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
}

.flow-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.flow-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* --- Testimonials --- */
.testi-cards {
  display: grid;
  gap: 12px;
}

.testi {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.testi-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 5px;
}

.testi-attr {
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.testi-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.testi-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--dark);
}

.testi p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

/* --- FAQ --- */
details {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  list-style: none;
  display: block;
  position: relative;
  padding-right: 20px;
}

/* Webkit系ブラウザのマーカー非表示 */
summary::-webkit-details-marker {
  display: none;
}

/* カスタム矢印 (閉) */
summary::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--muted);
}

/* カスタム矢印 (開) */
details[open] summary::after {
  content: '▲';
}

.faq-q {
  color: var(--accent-red);
  font-weight: 700;
  font-size: 16px;
  margin-right: 8px;
}

.faq-a {
  padding: 16px 0 0 0;
  margin-left: 28px; /* Q. の分インデント */
  border-top: 1px solid #f0f0f0;
  margin-top: 16px;
}

.faq-a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

/* --- Contact --- */
.contact {
  padding: 22px var(--g);
  background: #efefef;
}

.contact-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 20px 0;
}

.contact-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 16px;
}

.contact-form {
  max-width: 360px;
  margin: 0 auto;
}

.form-row {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #111;
}

.form-row .req {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 0;
  padding: 14px;
  margin-top: 8px;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
}

.confirm-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0;
}

.mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  color: #fff;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 0;
  font-weight: 900;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0);
}

.mail-icon {
  background: #fff1;
  padding: 8px;
  border-radius: 50%;
}

/* --- privacy-note --- */
.privacy-note {
  background: #fff;
  padding: 16px 16px;
  border-radius: 0;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.privacy-title {
    font-weight: 400;
    cursor: pointer;
    font-size: 12px;
    list-style: none;
    display: block;
    position: relative;
    padding-right: 20px;
}

.privacy-main {
  margin: 20px 0;
  font-size: 11px;
  line-height: 1.6;
  color: #747474;
}

/* Accessibility focus */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 120, 215, 0.12);
  outline-offset: 2px;
}

/* --- Sticky CTA (レイアウト・SVGアイコン対応) --- */
/* ★ここが唯一の定義になります★ */
.cta-area {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0; /* 画面下に固定 */
  width: var(--page-w); /* 親の最大幅に合わせる */
  max-width: 100%;
  z-index: 999;
  
  /* 背景を白に、パディングと角丸を削除 */
  background: #fff; 
  padding: 0;
  border-radius: 0;
  
  /* 影を上方向のみに変更 */
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.cta-inner {
  display: flex;
  gap: 0; /* ボタン間の隙間を削除 */
}

/* * リンクボタン共通スタイル
 * ★セレクタを .cta-inner a から .cta-phone, .cta-mail に変更
 */
.cta-phone,
.cta-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px; /* 共通のパディング */
  border-radius: 0; /* ボタンの角丸を削除 */
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
}

/* --- 電話ボタン --- */
/* (詳細度が揃ったため、ここの指定が優先されます) */
.cta-phone {
  background: var(--accent-red);
  padding-left: 12px;        /* 共通の padding を上書き */
  
  /* ↓ 70%の比率をここで指定します */
  flex: 7 1 0%;
}

/* --- メールボタン --- */
/* (詳細度が揃ったため、ここの指定が優先されます) */
.cta-mail {
  background: var(--green);
  flex-direction: column; 
  gap: 4px;                   /* 共通の gap を上書き */
  padding: 12px 8px;        /* 共通の padding を上書き */
  text-align: center;
  
  /* ↓ 30%の比率をここで指定します */
  flex: 3 1 0%;
}


/* --- アイコン (SVG対応) --- */

/* アイコンラッパー共通 */
.cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 電話アイコンのラッパー (白い円) */
.cta-phone .cta-icon-wrap {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
}

/* メールアイコンのラッパー */
.cta-mail .cta-icon-wrap {
  width: 30px; 
  height: 30px;
}

/* 電話SVGアイコンのサイズ */
.cta-svg-phone {
  display: block;
  width: 25px; /* 白い円の中でのサイズ */
  height: auto;
}

/* メールSVGアイコンのサイズ */
.cta-svg-mail {
  display: block;
  width: 30px; /* ラッパーいっぱいのサイズ */
  height: auto;
}

/* --- テキスト (変更なし) --- */
.cta-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.cta-sub {
  font-size: 11px;
  font-weight: 500;
  padding-bottom: 2px;
}
.cta-main {
  font-size: 20px;
  font-weight: 500;
}
.cta-mail .cta-main {
  font-size: 14px;
}
.cta-main a {
  text-decoration: none;
  color: #fff;
}

/* Footer */
.site-footer {
  padding: 20px;
  background: #0b2740;
  color: #fff;
  text-align: center;
}

.site-footer small {
  opacity: 0.8;
  display: block;
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
}
/* --- Footer Company Info (追加) --- */

/* フッター内のテキスト揃えを左に（コピーライトは除く） */
.footer-inner {
  text-align: left;
  max-width: 360px; /* 会社概要の幅に合わせて中央寄せ */
  margin: 0 auto;
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  margin: 16px 0 38px 0;
  text-align: center; /* タイトルのみ中央揃え */
}

.company-info {
  margin: 0 auto 24px auto; /* 中央寄せと、コピーライトとのマージン */
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
}

.company-info dl {
  margin: 0;
  padding: 0;
  display: grid;
  /* 項目列(固定幅)と内容列(残り) */
  grid-template-columns: 80px 1fr; 
  gap: 10px 12px; /* 行間, 列間 */
}

.company-info dt {
  font-weight: 600;
  padding-top: 10px;
  /* フッター背景(#0b2740)に合う薄い白の区切り線 */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / 2; /* 1列目 */
}

.company-info dd {
  margin: 0;
  padding: 10px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 2 / 3; /* 2列目 */
}

/* 最初の行の区切り線は不要 */
.company-info dt:first-of-type,
.company-info dd:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* --- PC (Responsive) styles --- */
@media (min-width: 768px) {
  
  /* PC表示時の背景色（両脇の余白）を薄いグレーに */
  body {
    background: #fdf9e5;
  }
  
  /* * メインコンテンツ領域（402px幅）が浮き上がって見えるように
   * 背景色（白）と影を追加します。
   */
  .page-wrap {
    background: #fff; /* 各セクションの背景色を保証 */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    
    /* 上下の余白（なくてもOK） */
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
  }
  
  /* * 固定CTAエリアもコンテンツ幅と合わせ、影を調整します
   * (既存の影より少し強めます)
   */
  .cta-area {
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  }
}
/* --- Complete Page (送信完了ページ) --- */
.complete-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.complete-container {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 50px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.complete-icon {
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.complete-title {
  font-size: 28px;
  font-weight: 700;
  color: #262626;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
}

.complete-message {
  margin-bottom: 40px;
}

.complete-message p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 20px 0;
}

.complete-note {
  font-size: 14px;
  color: #666;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.complete-contact {
  margin: 40px 0;
  padding: 30px 20px;
  background: #f8f8f8;
  border-radius: 12px;
}

.complete-contact-label {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.complete-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #e23b2e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(226, 59, 46, 0.3);
}

.complete-phone-btn:hover {
  background: #c53323;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 59, 46, 0.4);
}

.phone-icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.phone-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.phone-number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.phone-number a {
  color: #fff;
  text-decoration: none;
}

.complete-home-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: #262626;
  border: 2px solid #262626;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  margin-top: 20px;
}

.complete-home-btn:hover {
  background: #262626;
  color: #fff;
}

/* Complete Page - レスポンシブ対応 */
@media (max-width: 640px) {
  .complete-container {
    padding: 40px 20px;
  }

  .complete-title {
    font-size: 24px;
  }

  .complete-message p {
    font-size: 15px;
  }

  .phone-number {
    font-size: 16px;
  }
}

/* --- MW WP Form Styles --- */
/* エラーメッセージ */
.mwform-error {
  color: var(--accent-red);
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

/* 同意チェックボックス */
.agree-row {
  margin: 20px 0;
  text-align: left;
}

.agree-row label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.agree-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

/* 確認画面のアクション */
.confirm-actions {
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin-top: 20px;
}

.confirm-actions .back-btn {
  background: #666;
  order: 2;
}

.confirm-actions .back-btn:hover {
  background: #555;
}

/* 確認画面でのinput表示調整 */
.mwform-zip-field,
.contact-form input[disabled],
.contact-form textarea[disabled] {
  background: #f5f5f5;
  cursor: not-allowed;
}

/* MW WP Formのbutton調整 */
.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  color: #fff;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 0;
  font-weight: 900;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form input[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  background: #333;
}

/* 修正ボタン */
.contact-form input[type="button"],
.contact-form button[type="button"] {
  background: #666;
  cursor: pointer;
}

.contact-form input[type="button"]:hover,
.contact-form button[type="button"]:hover {
  background: #555;
}

@media (min-width: 640px) {
  .confirm-actions {
    flex-direction: row-reverse;
  }

  .confirm-actions .back-btn {
    order: 0;
  }
}
