/*
Theme Name: STAR Influencer
Theme URI: https://example.com
Author: Tempos Busters
Author URI: https://www.tempos21.com
Description: STAR Influencer LP theme for Tempos Busters influencer marketing service.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: star-influencer
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold2: #E8C96A;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --off: #F7F4EE;
  --white: #FFFFFF;
  --gray: #888;
  --fh: 'Playfair Display', serif;
  --fj: 'Noto Sans JP', sans-serif;
  --fe: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--fj); background: var(--white); color: var(--dark); overflow-x: hidden; }

/* =============================================
   NAV
============================================= */
.si-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.97);
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.si-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-star {
  width: 36px; height: 36px; background: var(--gold); flex-shrink: 0;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.logo-text { font-family: var(--fe); font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 3px; }
.logo-text span { color: var(--gold); }
.si-nav-links { display: flex; gap: 32px; }
.si-nav-links a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
.si-nav-links a:hover { color: var(--gold); }
.si-nav-cta {
  background: var(--gold); color: var(--dark);
  border: none; padding: 10px 24px; border-radius: 2px;
  font-family: var(--fj); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px;
  text-decoration: none; display: inline-block;
}
.si-nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* =============================================
   HERO
============================================= */
.si-hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark); overflow: hidden;
}
.si-hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 56px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 11px; font-family: var(--fe); font-weight: 600;
  letter-spacing: 2.5px; padding: 7px 16px; border-radius: 2px; margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.si-hero h1 { font-family: var(--fh); font-size: 58px; font-weight: 900; line-height: 1.08; color: #fff; margin-bottom: 10px; }
.si-hero h1 em { font-style: italic; color: var(--gold); display: block; font-size: 64px; }
.hero-divider { width: 60px; height: 2px; background: var(--gold); margin: 28px 0; }
.hero-sub { font-size: 14px; line-height: 2; color: rgba(255,255,255,0.55); margin-bottom: 40px; max-width: 400px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--dark); padding: 15px 36px; border-radius: 2px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; font-family: var(--fj); text-decoration: none; display: inline-block; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; padding: 15px 32px; border-radius: 2px; font-size: 14px; font-weight: 400; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; font-family: var(--fj); text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.si-hero-right { position: relative; overflow: hidden; }
.hero-mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; gap: 3px; }
.mosaic-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(1.1); transition: filter 0.3s; }
.mosaic-img:hover { filter: brightness(0.9) saturate(1.3); }
.mosaic-big { grid-row: span 2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0) 40%); }

/* =============================================
   STATS BAR
============================================= */
.si-stats-bar {
  background: var(--dark2);
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-item { padding: 36px 40px; border-right: 1px solid rgba(255,255,255,0.06); text-align: center; transition: background 0.2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.05); }
.stat-num { font-family: var(--fe); font-size: 44px; font-weight: 900; color: var(--gold); letter-spacing: -2px; display: block; line-height: 1; }
.stat-unit { font-size: 20px; font-weight: 400; opacity: 0.7; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 8px; letter-spacing: 1px; }

/* =============================================
   MARQUEE
============================================= */
.si-marquee-wrap { background: var(--gold); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.si-marquee-inner { display: inline-flex; animation: marquee-scroll 25s linear infinite; }
.si-marquee-inner span { font-family: var(--fe); font-size: 11px; font-weight: 800; color: var(--dark); letter-spacing: 3px; text-transform: uppercase; padding: 0 36px; border-right: 1px solid rgba(0,0,0,0.15); }
@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =============================================
   ABOUT
============================================= */
.si-about { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-photo { position: relative; overflow: hidden; min-height: 500px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.about-photo-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.3), transparent); }
.about-photo-tag { position: absolute; bottom: 32px; left: 32px; background: var(--dark); color: var(--gold); font-family: var(--fe); font-size: 11px; font-weight: 700; letter-spacing: 2px; padding: 8px 16px; border-left: 3px solid var(--gold); }
.about-content { background: var(--off); display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; }
.sec-eyebrow { font-family: var(--fe); font-size: 10px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.sec-title { font-family: var(--fh); font-size: 42px; font-weight: 900; line-height: 1.15; color: var(--dark); margin-bottom: 24px; }
.sec-body { font-size: 14px; line-height: 2; color: #555; margin-bottom: 32px; font-weight: 300; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.atag { padding: 6px 16px; border-radius: 2px; font-size: 12px; font-weight: 500; border: 1px solid #ddd; background: #fff; color: #444; transition: all 0.2s; cursor: default; }
.atag:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* =============================================
   INDUSTRIES
============================================= */
.si-industries { background: var(--dark); padding: 96px 56px; }
.sec-header { margin-bottom: 64px; }
.sec-header .sec-title { color: #fff; font-size: 46px; }
.sec-header .sec-body { color: rgba(255,255,255,0.4); max-width: 480px; }
.ind-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 300px 300px; gap: 4px; }
.ind-card { position: relative; overflow: hidden; cursor: pointer; }
.ind-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(1.1); transition: all 0.4s; }
.ind-card:hover img { filter: brightness(0.75) saturate(1.3); transform: scale(1.05); }
.ind-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); }
.ind-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.ind-card-name { font-size: 18px; font-weight: 700; color: #fff; font-family: var(--fj); margin-bottom: 4px; }
.ind-card-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
.ind-card-big { grid-row: span 2; }

/* =============================================
   FEATURES
============================================= */
.si-features { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.feat-left { padding: 96px 64px; border-right: 1px solid #eee; }
.feat-list { margin-top: 48px; display: flex; flex-direction: column; }
.feat-item { padding: 28px 0; border-bottom: 1px solid #eee; display: flex; gap: 20px; align-items: flex-start; }
.feat-num { font-family: var(--fe); font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 1px; min-width: 28px; margin-top: 2px; }
.feat-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feat-body { font-size: 13px; color: #777; line-height: 1.8; }
.feat-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 100%; min-height: 500px; gap: 4px; }
.feat-photo { overflow: hidden; }
.feat-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: all 0.3s; }
.feat-photo img:hover { filter: brightness(1); transform: scale(1.03); }

/* =============================================
   FLOW
============================================= */
.si-flow { background: var(--off); padding: 96px 56px; }
.si-flow .sec-header .sec-title { color: var(--dark); }
.si-flow .sec-header .sec-body { color: #666; }
.flow-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.flow-step { background: var(--white); padding: 40px 28px; border: 1px solid #eee; position: relative; transition: all 0.2s; }
.flow-step:hover { border-color: var(--gold); transform: translateY(-4px); }
.flow-arrow { position: absolute; top: 50%; right: -1px; transform: translateY(-50%); width: 24px; height: 2px; background: var(--gold); z-index: 1; }
.flow-arrow::after { content: ''; position: absolute; right: -1px; top: -4px; border-left: 8px solid var(--gold); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.flow-step:last-child .flow-arrow { display: none; }
.flow-step-num { font-family: var(--fe); font-size: 42px; font-weight: 900; color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 16px; }
.flow-step-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.flow-step-body { font-size: 13px; color: #888; line-height: 1.8; }

/* =============================================
   VOICE
============================================= */
.si-voice { background: var(--dark2); padding: 96px 56px; }
.si-voice .sec-header .sec-title { color: #fff; }
.si-voice .sec-header .sec-body { color: rgba(255,255,255,0.4); }
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.voice-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 32px; transition: all 0.2s; }
.voice-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
.voice-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.voice-star { width: 14px; height: 14px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.voice-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 24px; font-style: italic; }
.voice-author { display: flex; align-items: center; gap: 12px; }
.voice-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(201,168,76,0.3); flex-shrink: 0; }
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-name { font-size: 13px; font-weight: 700; color: #fff; }
.voice-role { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* =============================================
   CTA / CONTACT
============================================= */
.si-cta { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.cta-bg { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.5); }
.cta-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.75); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 80px 40px; max-width: 720px; width: 100%; }
.cta-eyebrow { font-family: var(--fe); font-size: 10px; font-weight: 700; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.si-cta h2 { font-family: var(--fh); font-size: 52px; font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.si-cta h2 em { font-style: italic; color: var(--gold); }
.si-cta p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 2; margin-bottom: 40px; font-weight: 300; }

/* CF7 フォームスタイル */
.wpcf7-form .cf7-step-label { font-size: 11px; letter-spacing: 3px; color: var(--gold); font-family: var(--fe); font-weight: 700; margin-bottom: 24px; text-transform: uppercase; display: block; }
.wpcf7-form .cf7-field-group { margin-bottom: 20px; text-align: left; }
.wpcf7-form .cf7-field-group label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.wpcf7-form .req { color: var(--gold); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 13px 18px; border-radius: 2px; font-size: 14px;
  font-family: var(--fj); transition: border-color 0.2s; outline: none;
}
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--gold); }
.wpcf7 select option { background: var(--dark); color: #fff; }
.wpcf7 textarea { min-height: 120px; resize: vertical; }

/* ステップナビ */
.cf7-step-nav { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; }
.cf7-step-nav-item { display: flex; align-items: center; gap: 0; }
.cf7-step-nav-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.3); font-family: var(--fe); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cf7-step-nav-dot.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.cf7-step-nav-dot.done { background: rgba(201,168,76,0.3); border-color: var(--gold); color: var(--gold); }
.cf7-step-nav-line { width: 60px; height: 1px; background: rgba(255,255,255,0.15); }
.cf7-step-nav-line.active { background: var(--gold); }
.cf7-step-nav-label { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 8px; display: block; }

/* ボタン */
.wpcf7 .btn-next,
.wpcf7 .btn-submit,
.wpcf7 input[type="submit"] {
  background: var(--gold); color: var(--dark);
  border: none; padding: 15px 40px; font-size: 14px; font-weight: 700;
  cursor: pointer; border-radius: 2px; transition: all 0.2s;
  font-family: var(--fj); letter-spacing: 0.5px;
}
.wpcf7 .btn-next:hover,
.wpcf7 .btn-submit:hover,
.wpcf7 input[type="submit"]:hover { background: var(--gold2); transform: translateY(-2px); }
.wpcf7 .btn-prev { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 15px 32px; font-size: 14px; cursor: pointer; border-radius: 2px; font-family: var(--fj); transition: all 0.2s; }
.wpcf7 .btn-prev:hover { border-color: var(--gold); color: var(--gold); }

/* 確認画面 */
.cf7-confirm-block { margin-bottom: 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.cf7-confirm-row { display: flex; gap: 16px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.cf7-confirm-row:last-child { border-bottom: none; }
.cf7-confirm-label { color: rgba(255,255,255,0.4); min-width: 140px; font-size: 13px; }
.cf7-confirm-val { color: #fff; }
.cf7-confirm-btns { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.wpcf7-response-output { border: 1px solid rgba(201,168,76,0.4) !important; color: var(--gold) !important; padding: 12px 20px !important; margin-top: 16px !important; border-radius: 2px !important; font-size: 13px !important; background: rgba(201,168,76,0.05) !important; }
.wpcf7-not-valid-tip { color: #E8C96A !important; font-size: 12px !important; margin-top: 4px !important; }

/* =============================================
   THANKS PAGE
============================================= */
.si-thanks-wrap { text-align: center; padding: 120px 40px; background: var(--dark); min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.thanks-star { width: 60px; height: 60px; background: var(--gold); margin: 0 auto 32px; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.thanks-title { font-family: var(--fh); font-size: 36px; font-weight: 900; color: #fff; line-height: 1.4; margin-bottom: 24px; }
.thanks-body { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 2; margin-bottom: 40px; max-width: 480px; }
.thanks-btn { background: var(--gold); color: var(--dark); padding: 14px 36px; border-radius: 2px; text-decoration: none; font-size: 14px; font-weight: 700; transition: all 0.2s; display: inline-block; }
.thanks-btn:hover { background: var(--gold2); transform: translateY(-2px); }

/* =============================================
   FOOTER
============================================= */
.si-footer { background: var(--dark); padding: 48px 56px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-star { width: 28px; height: 28px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.footer-name { font-family: var(--fe); font-size: 13px; font-weight: 800; color: #fff; letter-spacing: 3px; }
.footer-name span { color: var(--gold); }
.si-footer p { font-size: 11px; color: rgba(255,255,255,0.25); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .si-nav { padding: 16px 24px; }
  .si-nav-links { display: none; }
  .si-hero { grid-template-columns: 1fr; min-height: auto; }
  .si-hero-left { padding: 100px 24px 48px; }
  .si-hero h1 { font-size: 38px; }
  .si-hero h1 em { font-size: 42px; }
  .si-hero-right { height: 350px; }
  .si-stats-bar { grid-template-columns: repeat(3,1fr); }
  .stat-item { padding: 20px 12px; }
  .stat-num { font-size: 32px; }
  .si-about { grid-template-columns: 1fr; }
  .about-photo { min-height: 300px; }
  .about-content { padding: 48px 24px; }
  .si-industries { padding: 64px 24px; }
  .ind-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px 250px; }
  .ind-card-big { grid-row: span 1; }
  .si-features { grid-template-columns: 1fr; }
  .feat-left { padding: 48px 24px; border-right: none; border-bottom: 1px solid #eee; }
  .feat-photos { height: 400px; }
  .si-flow { padding: 64px 24px; }
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .flow-arrow { display: none; }
  .si-voice { padding: 64px 24px; }
  .voice-grid { grid-template-columns: 1fr; }
  .si-cta h2 { font-size: 32px; }
  .si-footer { flex-direction: column; gap: 16px; padding: 32px 24px; text-align: center; }
}

/* ============================================================
   お問い合わせフォーム - ホワイトカードデザイン (案②)
   ============================================================ */

/* ページ背景 */
body.page-id-13 {
  background: #f5f5f0;
}

/* リード文 */
body.page-id-13 p.has-text-align-center {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #555;
  text-align: center;
  margin: 100px auto 32px;
  padding: 0 24px;
  max-width: 640px;
  line-height: 1.8;
}

/* カード：中央配置＋白背景 */
body.page-id-13 .wpcf7 {
  max-width: 640px;
  margin: 0 auto 80px;
  padding: 48px 48px 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* フォームの各フィールドブロック */
body.page-id-13 .wpcf7-form > p {
  margin: 0 0 28px;
}

/* ラベル */
body.page-id-13 .wpcf7-form label {
  display: block;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

/* テキスト・メール入力欄 */
body.page-id-13 .wpcf7-form input[type="text"],
body.page-id-13 .wpcf7-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}

/* テキストエリア */
body.page-id-13 .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #fafafa;
  box-sizing: border-box;
  resize: vertical;
  min-height: 130px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}

/* フォーカス時：ゴールドボーダー */
body.page-id-13 .wpcf7-form input[type="text"]:focus,
body.page-id-13 .wpcf7-form input[type="email"]:focus,
body.page-id-13 .wpcf7-form textarea:focus {
  border-color: #c9a84c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}

/* 送信ボタン */
body.page-id-13 .wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96d 50%, #c9a84c 100%);
  color: #1a1a1a;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
body.page-id-13 .wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.45);
}
body.page-id-13 .wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
}

/* バリデーションエラー */
body.page-id-13 .wpcf7-not-valid {
  border-color: #e05555 !important;
  box-shadow: 0 0 0 4px rgba(224,85,85,0.10) !important;
}
body.page-id-13 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e05555;
  margin-top: 4px;
  display: block;
}

/* 送信完了メッセージ */
body.page-id-13 .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  border: none !important;
}
body.page-id-13 .wpcf7-mail-sent-ok {
  background: #f0faf0;
  color: #2e7d32;
}
body.page-id-13 .wpcf7-mail-sent-ng,
body.page-id-13 .wpcf7-aborted {
  background: #fff0f0;
  color: #c62828;
}

/* レスポンシブ */
@media (max-width: 640px) {
  body.page-id-13 .wpcf7 {
    padding: 32px 24px;
  }
}
