/*
Theme Name: FlexiPress
Theme URI: https://flexipress.jp
Author: FlexiPress
Author URI: https://flexipress.jp
Description: 多目的ランディングページ・コーポレートサイト対応WordPressテーマ
Version: 2.5.13
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flexipress
Tags: landing-page, multipurpose, japanese
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #28384a;
  background: #ffffff;
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::placeholder { color: #aab4c2; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── Placeholder (no-image state) ── */
.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #eef2f8, #eef2f8 7px,
    #e1e8f2 7px, #e1e8f2 14px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8593a6;
  font-family: monospace;
  font-size: 11px;
  border-radius: 10px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eef1f6;
  box-shadow: 0 1px 6px rgba(20, 40, 80, 0.04);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  text-decoration: none;
}
.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2f6bf0, #1f51d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  transform: skewX(-6deg);
}
.logo-text {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #1f3550;
}
.logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.logo-img-full {
  height: 44px;
  max-width: 240px;
}

/* WP nav menu */
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3a4a5c;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-nav ul li a {
  text-decoration: none;
  color: #3a4a5c;
  transition: color 0.15s;
}
.site-nav ul li a:hover { color: var(--fp-accent, #2456da); }

.btn-primary {
  flex: none;
  background: #f47a24;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(244, 122, 36, 0.32);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #28384a;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: center;
}
.mobile-menu-overlay ul li { margin-bottom: 28px; }
.mobile-menu-overlay ul li a {
  font-size: 22px;
  font-weight: 700;
  color: #28384a;
  text-decoration: none;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #28384a;
  padding: 8px;
}
.mobile-menu-cta {
  display: block;
  background: #f47a24;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(244, 122, 36, 0.35);
}

/* ── Hero ── */
.hero-wrap {
  background: #f4f7fb;
  padding: 28px 24px 40px;
}
.hero {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--fp-bg, linear-gradient(160deg, #2456da 0%, #1c47c0 100%));
  border-radius: 18px;
  padding: 54px 56px;
  color: var(--fp-text, #fff);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-body { flex: 1; min-width: 340px; }
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 54px;
  line-height: 1.18;
  font-weight: 900;
  margin: 0 0 22px;
  letter-spacing: 1px;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 30px;
  color: var(--fp-text, rgba(255, 255, 255, 0.92));
  max-width: 430px;
}
.hero-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 34px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  flex: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--fp-text, rgba(255, 255, 255, 0.8));
  margin-bottom: 6px;
}
.hero-stat-value {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.hero-stat-value span { font-size: 15px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--fp-accent, #f47a24);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(244, 122, 36, 0.4);
  min-width: 380px;
  transition: opacity 0.15s;
}
.hero-cta:hover { opacity: 0.9; }
.hero-note {
  font-size: 11px;
  color: var(--fp-text, rgba(255, 255, 255, 0.7));
  margin-top: 12px;
}
.hero-visual {
  flex: none;
  width: 380px;
  position: relative;
}
.hero-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}
.hero-card .placeholder {
  height: 215px;
  background: repeating-linear-gradient(
    45deg, #dbe4f3, #dbe4f3 8px, #cbd6ec 8px, #cbd6ec 16px
  );
  color: #6f7f96;
}
.hero-card-sub {
  position: absolute;
  bottom: -18px;
  right: -14px;
  width: 90px;
  height: 130px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}
.hero-card-sub .placeholder {
  height: 100%;
  background: repeating-linear-gradient(
    45deg, #e6ebf4, #e6ebf4 6px, #d6deec 6px, #d6deec 12px
  );
  color: #8593a6;
  font-size: 9px;
  border-radius: 9px;
}

/* ── Shared ── */
.section-label, .fp-section-label {
  color: var(--fp-accent, #2456da);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-size: 31px;
  font-weight: 900;
  margin: 0 0 40px;
  letter-spacing: 0.5px;
}
.accent { color: #f47a24; }
.badge-gold {
  display: inline-block;
  background: #ffe9b0;
  color: #a06800;
  font-size: 11px;
  font-weight: 700;
  border-radius: 5px;
  padding: 4px 12px;
}

/* ── Problems ── */
.problems {
  padding: 62px 24px 56px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}
.problems h2 {
  font-size: 33px;
  font-weight: 900;
  margin: 0 0 44px;
  letter-spacing: 0.5px;
}
.problems h2 .big { font-size: 42px; color: var(--fp-accent, #f47a24); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.problem-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.05);
}
.problem-card .placeholder { height: 110px; margin-bottom: 20px; }
.problem-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 12px; }
.problem-card p { font-size: 13px; color: #6a7889; margin: 0; line-height: 1.8; }

/* ── Strengths ── */
.strengths { background: var(--fp-bg, #e9f0fb); padding: 60px 24px 56px; }
.strengths-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.strength-list { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.strength-item {
  background: #fff;
  border-radius: 14px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.06);
}
.strength-item .placeholder { flex: none; width: 160px; height: 100px; }
.strength-num { font-size: 40px; font-weight: 900; color: #c9d6ee; flex: none; width: 48px; }
.strength-item h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.strength-item p { font-size: 13.5px; color: #6a7889; margin: 0; line-height: 1.85; }
.strength-body { flex: 1; }
.strengths-cta {
  background: #fff;
  border-radius: 14px;
  padding: 26px 34px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.06);
  text-align: left;
}
.strengths-cta-text { font-size: 17px; font-weight: 700; line-height: 1.6; }
.strengths-cta-text span { font-size: 14px; font-weight: 500; color: #6a7889; }
.strengths-cta-action { flex: none; text-align: center; }
.btn-orange-lg {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--fp-accent, #f47a24);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(244, 122, 36, 0.35);
  transition: opacity 0.15s;
}
.btn-orange-lg:hover { opacity: 0.9; }

/* ── Effects ── */
.effects { padding: 54px 24px; }
.effects-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--fp-bg, linear-gradient(160deg, #2456da 0%, #1c47c0 100%));
  border-radius: 18px;
  padding: 46px 44px;
}
.effects-inner h2 {
  text-align: center;
  color: #fff;
  font-size: 29px;
  font-weight: 900;
  margin: 0 0 34px;
  letter-spacing: 0.5px;
}
.effects-inner h2 .big { color: #ffd14a; font-size: 38px; }
.effects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.effect-card { background: #fff; border-radius: 12px; padding: 26px 18px; text-align: center; }
.effect-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: #e9f0fb; color: var(--fp-accent, #2456da);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 22px;
}
.effect-label { font-size: 13px; color: #6a7889; margin-bottom: 8px; font-weight: 500; }
.effect-value { font-size: 34px; font-weight: 900; color: var(--fp-accent, #2456da); line-height: 1; }
.effect-value span { font-size: 15px; color: #28384a; }
.effect-card p { font-size: 11.5px; color: #8593a6; margin: 12px 0 0; line-height: 1.7; }
.effects-note { text-align: right; color: rgba(255,255,255,0.7); font-size: 11px; margin-top: 18px; }

/* ── Voice ── */
.voice { background: var(--fp-bg, #e9f0fb); padding: 58px 24px; }
.voice-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.voice-inner h2 { font-size: 29px; font-weight: 900; margin: 0 0 40px; letter-spacing: 0.5px; }
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 20px; text-align: left; }
.voice-card {
  background: #fff; border-radius: 14px; padding: 26px 28px;
  box-shadow: 0 4px 16px rgba(30, 60, 120, 0.06);
}
.voice-avatar {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  background: repeating-linear-gradient(45deg, #eef2f8, #eef2f8 6px, #e1e8f2 6px, #e1e8f2 12px);
  display: flex; align-items: center; justify-content: center;
  color: #8593a6; font-family: monospace; font-size: 9px; text-align: center;
  overflow: hidden;
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.voice-meta { font-size: 12px; color: #8593a6; margin-bottom: 0; }
.voice-card h3 { font-size: 16px; font-weight: 700; color: var(--fp-accent, #f47a24); margin: 0 0 8px; }
.voice-card p { font-size: 12.5px; color: #6a7889; margin: 0; line-height: 1.8; }
.voice-note { font-size: 11px; color: #8593a6; margin-top: 20px; }
.fp-voice-hidden { display: none; }
.fp-voice-more-wrap { text-align: center; margin-top: 32px; }
.fp-voice-more-btn {
  display: inline-block; padding: 13px 40px; background: #fff;
  border: 2px solid var(--fp-accent, #2456da); color: var(--fp-accent, #2456da);
  border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.15s;
}
.fp-voice-more-btn:hover { background: var(--fp-accent, #2456da); color: #fff; }

/* ── Flow ── */
.flow { padding: 58px 24px; max-width: 920px; margin: 0 auto; text-align: center; }
.flow h2 { font-size: 29px; font-weight: 900; margin: 0 0 8px; letter-spacing: 0.5px; }
.flow-list { display: flex; flex-direction: column; gap: 12px; text-align: left; margin-top: 34px; }
.flow-item {
  background: var(--fp-bg-item, #f5f8fc); border: 1px solid #e8edf4;
  border-radius: 12px; padding: 20px 26px;
  display: flex; align-items: center; gap: 22px;
}
.flow-num { flex: none; font-size: 26px; font-weight: 900; color: var(--fp-accent, #2456da); width: 36px; }
.flow-icon {
  flex: none; width: 42px; height: 42px; border-radius: 9px;
  background: #e9f0fb; color: var(--fp-accent, #2456da);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.flow-item h3 { font-size: 15.5px; font-weight: 700; margin: 0 0 4px; }
.flow-item p { font-size: 12.5px; color: #6a7889; margin: 0; }

/* ── Flow arrow variant ── */
.flow--arrow { max-width: 680px; }
.flow--arrow .flow-inner { position: relative; z-index: 1; }
.flow--arrow h2 { font-size: 29px; font-weight: 900; margin: 0 0 40px; }
.flow-arrow-list { display: flex; flex-direction: column; gap: 0; text-align: left; }
.flow-arrow-item { position: relative; }
.flow-arrow-body {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff; border: 1px solid #e8edf4; border-radius: 14px;
  padding: 20px 24px; box-shadow: 0 2px 8px rgba(30,60,120,0.05);
}
.flow-arrow-num {
  flex: none; font-size: 28px; font-weight: 900;
  color: var(--fp-accent, #2456da); line-height: 1; min-width: 40px;
}
.flow-arrow-icon {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: #e9f0fb; color: var(--fp-accent, #2456da);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.flow-arrow-content { flex: 1; }
.flow-arrow-content h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.flow-arrow-content p { font-size: 13px; color: #6a7889; margin: 0; line-height: 1.7; }
.flow-arrow-connector {
  display: flex; justify-content: center; padding: 6px 0;
}
.flow-arrow-chevron {
  font-size: 24px; color: var(--fp-accent, #2456da); line-height: 1;
}

/* ── FAQ ── */
.faq { background: var(--fp-bg, #f4f7fb); padding: 58px 24px; }
.faq-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-inner h2 { font-size: 29px; font-weight: 900; margin: 0 0 36px; letter-spacing: 0.5px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.faq-item {
  background: #fff; border: 1px solid #e8edf4;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(30, 60, 120, 0.04);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px; font-weight: 700; color: #28384a; text-align: left;
}
.faq-q-mark {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--fp-accent, #2456da); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}
.faq-chevron { margin-left: auto; color: #8593a6; font-size: 18px; transition: transform 0.2s; flex: none; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 24px 20px 66px;
  font-size: 13.5px; color: #6a7889; line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact ── */
.contact { background: var(--fp-bg, #fff); padding: 56px 24px; }
.contact-inner { max-width: 840px; margin: 0 auto; }
.contact-inner h2 { text-align: center; font-size: 28px; font-weight: 900; margin: 0 0 36px; letter-spacing: 0.5px; }
.fp-contact-lead { text-align: center; font-size: 15px; line-height: 1.8; color: var(--fp-text, #4a5568); margin: -20px 0 28px; }
.contact-form-wrap {
  background: #fff; border-radius: 16px; padding: 42px 46px;
  box-shadow: 0 6px 24px rgba(30, 60, 120, 0.07);
}
/* ── Business Hours ── */
.fp-hours { padding: 54px 24px; background: var(--fp-bg, #fff); }
.fp-hours-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.fp-hours-inner h2 { font-size: 29px; font-weight: 900; margin: 0 0 36px; letter-spacing: 0.5px; }
.fp-hours-table { width: 100%; border-collapse: collapse; }
.fp-hours-row {
  display: flex; align-items: center;
  padding: 16px 20px; gap: 20px;
  border-bottom: 1px solid #eef1f6;
}
.fp-hours-row:first-child { border-top: 1px solid #eef1f6; }
.fp-hours-day { font-weight: 700; font-size: 14.5px; width: 80px; flex: none; color: #28384a; }
.fp-hours-time { font-size: 14.5px; color: #6a7889; flex: 1; }
.fp-hours-closed-badge {
  display: inline-block; background: #fff0e8; color: #f47a24;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px;
}
.fp-hours-note { font-size: 12.5px; color: #8593a6; margin-top: 20px; text-align: center; }

/* ── Map ── */
.fp-map { padding: 54px 24px; background: var(--fp-bg, #f4f7fb); }
.fp-map-inner { max-width: 1000px; margin: 0 auto; }
.fp-map-inner h2 { text-align: center; font-size: 29px; font-weight: 900; margin: 0 0 40px; letter-spacing: 0.5px; }
.fp-map-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 36px; align-items: start; }
.fp-map-iframe-wrap { position: relative; padding-bottom: 65%; height: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(30,60,120,0.1); }
.fp-map-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.fp-map-placeholder { background: #e9f0fb; border-radius: 14px; aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; color: #8593a6; font-size: 13px; flex-direction: column; gap: 8px; }
.fp-map-info { display: flex; flex-direction: column; gap: 18px; }
.fp-map-info-row { display: flex; gap: 14px; align-items: flex-start; }
.fp-map-info-icon {
  flex: none; width: 40px; height: 40px; border-radius: 9px;
  background: var(--fp-accent-light, #e9f0fb); color: var(--fp-accent, #2456da);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.fp-map-info-label { font-size: 11.5px; color: #8593a6; margin-bottom: 3px; font-weight: 600; }
.fp-map-info-value { font-size: 14px; font-weight: 600; color: #28384a; line-height: 1.6; }

/* ── SNS ── */
.fp-sns { padding: 50px 24px; background: var(--fp-bg, #f4f7fb); }
.fp-sns-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.fp-sns-inner h2 { font-size: 26px; font-weight: 900; margin: 0 0 36px; letter-spacing: 0.5px; color: var(--fp-text, #28384a); }
.fp-sns-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.fp-sns-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 14px; color: #fff;
  transition: opacity 0.15s; box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.fp-sns-btn:hover { opacity: 0.85; }
.fp-sns-twitter  { background: #1da1f2; }
.fp-sns-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fp-sns-facebook { background: #1877f2; }
.fp-sns-youtube  { background: #ff0000; }
.fp-sns-line     { background: #06c755; }
.fp-sns-tiktok   { background: #010101; }
.fp-sns-note { font-size: 12px; color: #8593a6; margin-top: 24px; }

/* ── Gallery ── */
.fp-gallery { padding: 54px 24px; background: var(--fp-bg, #fff); }
.fp-gallery-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.fp-gallery-inner h2 { font-size: 29px; font-weight: 900; margin: 0 0 36px; letter-spacing: 0.5px; color: var(--fp-text, #28384a); }
.fp-gallery-grid { display: grid; gap: 12px; }
.fp-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fp-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fp-gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.fp-gallery-item { border-radius: 10px; overflow: hidden; position: relative; aspect-ratio: 4/3; background: #e9f0fb; }
.fp-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fp-gallery-item .placeholder { width: 100%; height: 100%; border-radius: 0; }
.fp-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; padding: 20px 12px 10px; font-size: 12px; text-align: left;
}

/* ── Posts List ── */
.fp-posts { padding: 50px 24px; background: var(--fp-bg, #fff); }
.fp-posts-inner { max-width: 900px; margin: 0 auto; }
.fp-posts-inner h2 { font-size: 26px; font-weight: 900; margin: 0 0 30px; text-align: center; }
.fp-posts-list { display: flex; flex-direction: column; }
.fp-post-item {
  display: flex; gap: 20px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid #e8edf4;
  text-decoration: none; color: inherit;
}
.fp-posts-list .fp-post-item:first-child { border-top: 1px solid #e8edf4; }
.fp-post-thumb {
  flex: none; width: 80px; height: 56px; border-radius: 7px; overflow: hidden;
  background: repeating-linear-gradient(45deg,#eef2f8,#eef2f8 6px,#e1e8f2 6px,#e1e8f2 12px);
}
.fp-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fp-post-date { font-size: 12px; color: #8593a6; margin-bottom: 5px; }
.fp-post-title { font-size: 14.5px; font-weight: 600; color: #28384a; line-height: 1.5; transition: color 0.15s; }
.fp-post-item:hover .fp-post-title { color: var(--fp-accent, #2456da); }
.fp-posts-more { text-align: center; margin-top: 28px; }
.fp-posts-more a {
  display: inline-block; padding: 12px 36px;
  border: 2px solid var(--fp-accent, #2456da);
  color: var(--fp-accent, #2456da); font-weight: 700; font-size: 14px;
  border-radius: 7px; text-decoration: none; transition: all 0.15s;
}
.fp-posts-more a:hover { background: var(--fp-accent, #2456da); color: #fff; }

/* ── Footer ── */
.site-footer { background: #16243a; color: #cdd6e3; padding: 46px 24px 26px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; text-decoration: none; }
.footer-logo-img { max-height: 36px; width: auto; object-fit: contain; display: block; }
.footer-logo .logo-icon { width: 28px; height: 28px; font-size: 16px; }
.footer-logo .logo-text { font-size: 19px; font-weight: 900; color: #fff; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-tagline { font-size: 12.5px; color: #8b97a8; }
.footer-links { display: flex; gap: 50px; font-size: 13px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #cdd6e3; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.btn-footer {
  flex: none; border: 1px solid #4a5a72; color: #fff;
  font-weight: 700; font-size: 14px; text-decoration: none;
  padding: 13px 26px; border-radius: 7px; transition: background 0.15s;
}
.btn-footer:hover { background: #2a384f; }
.footer-bottom {
  max-width: 1100px; margin: 30px auto 0;
  border-top: 1px solid #2a384f; padding-top: 18px;
  text-align: center; font-size: 11.5px; color: #6b7889;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hero { padding: 36px 28px; }
  .hero h1 { font-size: 38px; }
  .hero-cta { min-width: unset; width: 100%; }
  .hero-visual { width: 100%; }
  .effects-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-links { gap: 28px; }
  .fp-map-grid { grid-template-columns: 1fr; }
  .fp-gallery-grid.cols-3,
  .fp-gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .hero-body { min-width: 0; flex: 1 1 100%; }
  .hero-card-sub { display: none; }
  .effects-grid { grid-template-columns: 1fr; }
  .strengths-cta { flex-direction: column; }
  .fp-gallery-grid { grid-template-columns: 1fr !important; }

  /* ── Strengths mobile layout ── */
  .strength-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 18px;
  }
  .strength-item .placeholder { width: 100%; height: 140px; }
  .strength-item img { width: 100% !important; height: 140px !important; flex: none; }
  .strength-num { width: auto; font-size: 32px; }
  .strength-body { width: 100%; }

  /* ── Members SP layout ── */
  .fp-members-card { display: grid; grid-template-columns: auto 1fr; text-align: left; gap: 0 12px; }
  .fp-members-photo-wrap { grid-column: 1; grid-row: 1 / 3; margin: 0; }
  .fp-members-photo, .fp-members-photo-placeholder { width: 72px; height: 72px; margin: 0; font-size: 24px; }
  .fp-members-role { grid-column: 2; grid-row: 1; align-self: end; margin-bottom: 2px; }
  .fp-members-name { grid-column: 2; grid-row: 2; align-self: start; }
  .fp-members-bio { grid-column: 1 / 3; grid-row: 3; margin-top: 8px; text-align: left; }
  .fp-members-link { grid-column: 1 / 3; grid-row: 4; }

  /* ── Footer SP ── */
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-links a { display: block; }
}

/* ── Background image overlay ── */
.hero-wrap, .problems, .strengths, .effects, .voice, .flow,
.faq, .contact, .fp-hours, .fp-map, .fp-sns, .fp-gallery, .fp-posts { position: relative; }
.fp-section-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0; pointer-events: none;
}
.hero, .problems > :not(.fp-section-bg), .flow > :not(.fp-section-bg),
.strengths-inner, .effects-inner, .voice-inner, .faq-inner, .contact-inner,
.fp-hours-inner, .fp-map-inner, .fp-sns-inner, .fp-gallery-inner, .fp-posts-inner {
  position: relative; z-index: 1;
}

/* ── Text color CSS variable ── */
.hero-wrap, .problems, .strengths, .effects, .voice, .flow,
.faq, .contact, .fp-hours, .fp-map, .fp-sns, .fp-gallery, .fp-posts {
  color: var(--fp-text, inherit);
}

/* ── Hours matrix layout ── */
.fp-hours-matrix-wrap { overflow-x: auto; margin-bottom: 16px; -webkit-overflow-scrolling: touch; }
.fp-hours-matrix { width: 100%; border-collapse: collapse; min-width: 380px; border-radius: 10px; overflow: hidden; }
.fp-hours-matrix th, .fp-hours-matrix td { text-align: center; padding: 12px 10px; border: 1px solid #e0e4ec; font-size: 14px; }
.fp-hours-matrix th.fp-hours-matrix-label { background: #2e7d32; color: #fff; font-size: 12px; font-weight: 700; min-width: 110px; }
.fp-hours-matrix th.fp-hours-weekday { background: var(--fp-accent, #43a047); color: #fff; font-weight: 700; min-width: 44px; }
.fp-hours-matrix th.fp-hours-weekend { background: #f57c00; color: #fff; font-weight: 700; min-width: 44px; }
.fp-hours-matrix td.fp-hours-slot-label { background: #f5f9f0; text-align: left; padding-left: 14px; font-size: 13px; font-weight: 600; white-space: nowrap; color: #28384a; }
.fp-hours-matrix td.fp-hours-cell { font-size: 20px; color: #28384a; }
@media (max-width: 600px) {
  .fp-hours-matrix th, .fp-hours-matrix td { padding: 8px 6px; font-size: 12px; }
  .fp-hours-matrix td.fp-hours-cell { font-size: 16px; }
  .fp-hours-matrix td.fp-hours-slot-label { font-size: 11px; padding-left: 8px; }
}

/* ── Map single column ── */
.fp-map-grid.fp-map-single { grid-template-columns: 1fr; }

/* ── Contact direct phone / email ── */
.fp-contact-direct { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 28px; }
.fp-contact-tel, .fp-contact-mail {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 18px;
  text-decoration: none; transition: opacity 0.15s;
}
.fp-contact-tel { background: #e9f0fb; color: var(--fp-accent, #2456da); }
.fp-contact-mail { background: #fff3e6; color: #f47a24; }
.fp-contact-tel:hover, .fp-contact-mail:hover { opacity: 0.85; }
@media (max-width: 540px) {
  .fp-contact-tel, .fp-contact-mail { font-size: 15px; padding: 12px 18px; width: 100%; justify-content: center; }
}

/* ── Google Forms iframe ── */
.fp-contact-gform iframe { width: 100%; min-height: 600px; border: none; border-radius: 12px; }

/* ── Contact direct link ── */
.fp-contact-link { text-align: center; margin-bottom: 28px; }
.fp-contact-link-url {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 18px;
  text-decoration: none; transition: opacity 0.15s;
  background: #eef1f6; color: var(--fp-accent, #2456da);
}
.fp-contact-link-url:hover { opacity: 0.85; }
.fp-contact-link-note { font-size: 13px; color: var(--fp-text, #8593a6); margin: 8px 0 0; }
@media (max-width: 540px) {
  .fp-contact-link-url { font-size: 15px; padding: 12px 18px; width: 100%; justify-content: center; }
}

/* ── Contact embed HTML ── */
.fp-contact-embed { margin-top: 24px; max-width: 100%; }
.fp-contact-embed-label { text-align: center; font-size: 13px; font-weight: 700; color: var(--fp-text, #6a7889); margin: 0 0 10px; }
.fp-contact-embed-note { text-align: center; font-size: 13px; color: var(--fp-text, #8593a6); margin: 10px 0 0; }
.fp-contact-embed-body { max-width: 100%; overflow-x: auto; }
.fp-contact-embed-body iframe,
.fp-contact-embed-body video,
.fp-contact-embed-body img,
.fp-contact-embed-body embed,
.fp-contact-embed-body object { max-width: 100%; }

/* ── Single post & archive ── */
.fp-single-main { padding: 40px 24px 60px; }
.fp-single-inner { max-width: 800px; margin: 0 auto; }
.fp-single-article { background: #fff; }
.fp-single-meta { font-size: 12px; color: #8593a6; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fp-single-meta a { color: #8593a6; text-decoration: none; }
.fp-single-meta a:hover { color: var(--fp-accent, #2456da); }
.fp-single-title { font-size: 28px; font-weight: 900; margin: 0 0 24px; line-height: 1.4; color: #1f3550; }
.fp-single-thumb { margin-bottom: 32px; }
.fp-single-thumb img { width: 100%; border-radius: 10px; }
.fp-single-content { font-size: 15px; line-height: 1.9; }
.fp-single-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 16px; border-left: 4px solid #2456da; padding-left: 12px; }
.fp-single-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
.fp-single-content p { margin: 0 0 18px; }
.fp-single-content img { border-radius: 8px; margin: 16px 0; }
.fp-single-back { display: inline-block; padding: 12px 32px; border: 2px solid var(--fp-accent, #2456da); color: var(--fp-accent, #2456da); font-weight: 700; border-radius: 7px; text-decoration: none; transition: all 0.15s; }
.fp-single-back:hover { background: var(--fp-accent, #2456da); color: #fff; }
.fp-archive-list { display: flex; flex-direction: column; gap: 4px; }
.fp-post-item.fp-archive-item { padding: 14px 0; border-bottom: 1px solid #e8edf4; }
.fp-archive-pagination { margin-top: 28px; text-align: center; }
.fp-archive-pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid #dde3ec; border-radius: 5px; text-decoration: none; color: #28384a; font-size: 13px; }
.fp-archive-pagination .page-numbers.current { background: var(--fp-accent, #2456da); color: #fff; border-color: var(--fp-accent, #2456da); }

/* ═══════════════════════════
   Pricing
   ═══════════════════════════ */
.fp-pricing { padding: 80px 24px; background: var(--fp-bg, #f5f8fc); color: var(--fp-text, #28384a); position: relative; }
.fp-pricing-inner { max-width: 1100px; margin: 0 auto; }
.fp-pricing h2 { text-align: center; font-size: 32px; font-weight: 900; margin: 0 0 40px; }
.fp-pricing-grid { display: grid; gap: 24px; align-items: stretch; }
.fp-pricing-cols-1 { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
.fp-pricing-cols-2 { grid-template-columns: repeat(2, 1fr); }
.fp-pricing-cols-3 { grid-template-columns: repeat(3, 1fr); }
.fp-pricing-cols-4 { grid-template-columns: repeat(4, 1fr); }
.fp-pricing-card { background: #fff; border: 2px solid #e0e4ec; border-radius: 16px; padding: 28px 22px; position: relative; display: flex; flex-direction: column; }
.fp-pricing-recommended { border-color: var(--fp-accent, #2456da); box-shadow: 0 8px 32px rgba(36,86,218,0.13); }
.fp-pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--fp-accent, #2456da); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 18px; border-radius: 20px; white-space: nowrap; }
.fp-pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.fp-pricing-desc { font-size: 13px; color: #6a7889; margin-bottom: 18px; }
.fp-pricing-price { margin-bottom: 20px; }
.fp-pricing-price-value { font-size: 36px; font-weight: 900; color: var(--fp-accent, #2456da); }
.fp-pricing-price-unit { font-size: 14px; color: #6a7889; margin-left: 2px; }
.fp-pricing-features { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.fp-pricing-cta { display: block; text-align: center; padding: 12px 20px; border: 2px solid #ccd4e0; border-radius: 8px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.15s; color: #28384a; margin-top: auto; }
.fp-pricing-cta:hover { background: #f0f4fa; }
.fp-pricing-cta-primary { background: var(--fp-accent, #2456da); color: #fff !important; border-color: var(--fp-accent, #2456da); }
.fp-pricing-cta-primary:hover { opacity: 0.85; }
.fp-pricing-features li { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid #f0f4fa; font-size: 14px; }
.fp-pricing-feat-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.fp-pricing-feat-yes .fp-pricing-feat-icon { background: #e8f4e8; color: #2e7d32; }
.fp-pricing-feat-no .fp-pricing-feat-icon { background: #fce4ec; color: #c62828; }
.fp-pricing-feat-no { color: #aab4c2; }
.fp-pricing-note { font-size: 12px; color: #8593a6; text-align: center; margin-top: 28px; }
@media (max-width: 900px) {
  .fp-pricing-cols-3, .fp-pricing-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fp-pricing-cols-2, .fp-pricing-cols-3, .fp-pricing-cols-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════
   Menu
   ═══════════════════════════ */
.fp-menu { padding: 80px 24px; background: var(--fp-bg, #fff); color: var(--fp-text, #28384a); position: relative; }
.fp-menu-inner { max-width: 1000px; margin: 0 auto; }
.fp-menu h2 { text-align: center; font-size: 32px; font-weight: 900; margin: 0 0 48px; }
.fp-menu-category { margin-bottom: 52px; padding-bottom: 44px; border-bottom: 1px solid #e8edf4; }
.fp-menu-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fp-menu-cat-grid { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.fp-menu-cat-noimage { grid-template-columns: 1fr; }
.fp-menu-cat-image { border-radius: 12px; overflow: hidden; height: 200px; }
.fp-menu-cat-image img { width: 100%; height: 100%; object-fit: cover; }
.fp-menu-cat-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fp-menu-cat-icon { font-size: 26px; line-height: 1; }
.fp-menu-cat-header h3 { font-size: 20px; font-weight: 700; margin: 0; color: var(--fp-accent, #2456da); }
.fp-menu-cat-desc { color: #6a7889; font-size: 14px; margin: 0 0 20px; line-height: 1.7; }
.fp-menu-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px dashed #e8edf4; }
.fp-menu-item:last-child { border-bottom: none; }
.fp-menu-item-info { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 0; }
.fp-menu-item-num { font-size: 20px; font-weight: 900; color: var(--fp-accent, #2456da); line-height: 1.3; min-width: 30px; }
.fp-menu-item-name { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.fp-menu-item-desc { font-size: 13px; color: #6a7889; }
.fp-menu-item-price { font-size: 16px; font-weight: 700; color: var(--fp-accent, #2456da); white-space: nowrap; padding-top: 2px; }
.fp-menu-note { font-size: 12px; color: #8593a6; margin-top: 24px; text-align: center; }
@media (max-width: 700px) {
  .fp-menu-cat-grid:not(.fp-menu-cat-noimage) { grid-template-columns: 1fr; }
  .fp-menu-cat-image { height: 180px; }
}

/* ═══════════════════════════
   News Posts (Card Style)
   ═══════════════════════════ */
.fp-newsposts { padding: 80px 24px; background: var(--fp-bg, #f5f8fc); color: var(--fp-text, #28384a); position: relative; }
.fp-newsposts-inner { max-width: 1100px; margin: 0 auto; }
.fp-newsposts h2 { text-align: center; font-size: 32px; font-weight: 900; margin: 0 0 40px; }
.fp-newsposts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fp-newsposts-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px rgba(28,47,80,0.07); display: flex; flex-direction: column; transition: transform 0.15s, box-shadow 0.15s; }
.fp-newsposts-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(28,47,80,0.12); }
.fp-newsposts-img-wrap { display: block; height: 180px; overflow: hidden; flex-shrink: 0; }
.fp-newsposts-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fp-newsposts-card:hover .fp-newsposts-img-wrap img { transform: scale(1.04); }
.fp-newsposts-no-img { height: 100%; background: linear-gradient(135deg, #e0e8fa, #d0dcf4); display: flex; align-items: center; justify-content: center; color: #8593a6; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; }
.fp-newsposts-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.fp-newsposts-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.fp-newsposts-cat { background: var(--fp-accent, #2456da); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px; white-space: nowrap; }
.fp-newsposts-date { font-size: 12px; color: #8593a6; }
.fp-newsposts-title { font-size: 15px; font-weight: 700; margin: 0 0 10px; line-height: 1.5; }
.fp-newsposts-title a { text-decoration: none; color: inherit; }
.fp-newsposts-title a:hover { color: var(--fp-accent, #2456da); }
.fp-newsposts-excerpt { font-size: 13px; color: #6a7889; line-height: 1.7; margin: 0 0 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fp-newsposts-link { font-size: 13px; font-weight: 700; color: var(--fp-accent, #2456da); text-decoration: none; margin-top: auto; }
.fp-newsposts-link:hover { opacity: 0.75; }
.fp-newsposts-more-wrap { text-align: center; margin-top: 44px; }
.fp-newsposts-more { display: inline-block; padding: 14px 52px; border: 2px solid var(--fp-accent, #2456da); color: var(--fp-accent, #2456da); font-weight: 700; font-size: 15px; border-radius: 8px; text-decoration: none; transition: all 0.15s; letter-spacing: 0.06em; }
.fp-newsposts-more:hover { background: var(--fp-accent, #2456da); color: #fff; }
.fp-newsposts-empty { text-align: center; color: #8593a6; padding: 40px; grid-column: 1/-1; }
@media (max-width: 900px) { .fp-newsposts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fp-newsposts-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════
   Hero Full
   ═══════════════════════════ */
.fp-herofull { position: relative; display: flex; align-items: center; background: var(--fp-bg, #1c2e4a); background-size: cover; background-position: center; }
.fp-herofull-overlay { position: absolute; inset: 0; background: #000; pointer-events: none; }
.fp-herofull-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 80px 40px; width: 100%; }
.fp-herofull-align-center { text-align: center; }
.fp-herofull-label { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 20px; margin-bottom: 18px; letter-spacing: 0.1em; }
.fp-herofull-heading { font-size: clamp(26px, 5vw, 54px); font-weight: 900; color: #fff; line-height: 1.25; margin: 0 0 20px; }
.fp-herofull-lead { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.85; margin: 0 0 36px; max-width: 600px; }
.fp-herofull-align-center .fp-herofull-lead { margin-left: auto; margin-right: auto; }
.fp-herofull-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.fp-herofull-align-center .fp-herofull-ctas { justify-content: center; }
.fp-herofull-cta-primary { display: inline-block; padding: 16px 38px; background: var(--fp-accent, #2456da); color: #fff; font-weight: 700; font-size: 16px; border-radius: 8px; text-decoration: none; transition: opacity 0.15s; }
.fp-herofull-cta-primary:hover { opacity: 0.85; }
.fp-herofull-cta-secondary { display: inline-block; padding: 14px 38px; border: 2px solid rgba(255,255,255,0.75); color: #fff; font-weight: 700; font-size: 16px; border-radius: 8px; text-decoration: none; transition: background 0.15s; }
.fp-herofull-cta-secondary:hover { background: rgba(255,255,255,0.15); }
@media (max-width: 768px) {
  .fp-herofull-inner { padding: 60px 24px; }
  .fp-herofull-lead { font-size: 15px; }
  .fp-herofull-cta-primary, .fp-herofull-cta-secondary { width: 100%; text-align: center; }
}

/* ═══════════════════════════
   Members
   ═══════════════════════════ */
.fp-members { padding: 80px 24px; background: var(--fp-bg, #fff); color: var(--fp-text, #28384a); position: relative; }
.fp-members-inner { max-width: 1100px; margin: 0 auto; }
.fp-members-layout { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.fp-members-left h2 { font-size: 28px; font-weight: 900; margin: 0 0 14px; }
.fp-members-lead { font-size: 14px; color: #6a7889; line-height: 1.85; margin: 0 0 28px; }
.fp-members-more { display: inline-block; font-size: 14px; font-weight: 700; color: var(--fp-accent, #2456da); text-decoration: none; padding: 10px 20px; border: 2px solid var(--fp-accent, #2456da); border-radius: 7px; transition: all 0.15s; }
.fp-members-more:hover { background: var(--fp-accent, #2456da); color: #fff; }
.fp-members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 28px; }
.fp-members-card { text-align: center; }
.fp-members-photo-wrap { margin-bottom: 12px; }
.fp-members-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; border: 3px solid #e0e8fa; }
.fp-members-photo-placeholder { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #2456da, #1c47c0); color: #fff; font-size: 32px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.fp-members-role { font-size: 12px; color: var(--fp-accent, #2456da); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.03em; }
.fp-members-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.fp-members-bio { font-size: 13px; color: #6a7889; line-height: 1.7; margin: 0 0 10px; text-align: left; }
.fp-members-link { font-size: 12px; font-weight: 700; color: var(--fp-accent, #2456da); text-decoration: none; }
.fp-members-link:hover { opacity: 0.75; }
@media (max-width: 860px) {
  .fp-members-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .fp-members-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════
   Logo Slider
   ═══════════════════════════ */
@keyframes fp-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fp-logoslider { padding: 48px 0; background: var(--fp-bg, #f5f8fc); position: relative; overflow: hidden; }
.fp-logoslider-inner { max-width: 1100px; margin: 0 auto; }
.fp-logoslider-heading { text-align: center; font-size: 20px; font-weight: 700; color: #28384a; margin: 0 0 28px; padding: 0 24px; }
.fp-logoslider-track-wrap { overflow: hidden; }
.fp-logoslider-track { display: flex; align-items: center; gap: 0; width: max-content; animation: fp-marquee 30s linear infinite; }
.fp-logoslider-track:hover { animation-play-state: paused; }
.fp-logoslider-item { flex-shrink: 0; padding: 0 24px; display: flex; align-items: center; justify-content: center; }
.fp-logoslider-item-img-wrap { width: 120px; height: 44px; display: flex; align-items: center; justify-content: center; }
.fp-logoslider-item img { width: 100%; height: 100%; object-fit: contain; }
.fp-logoslider-placeholder { width: 120px; height: 44px; background: #e0e8fa; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.fp-logoslider-placeholder span { font-size: 11px; font-weight: 700; color: #8593a6; }
.fp-logoslider-editor-wrap { padding: 0 24px; }
.fp-logoslider-editor-track { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.fp-logoslider-editor-track .fp-logoslider-item { padding: 0; }
.fp-logoslider-editor-track .fp-logoslider-item-img-wrap { border: 1px solid #e0e4ea; border-radius: 6px; background: #fff; padding: 4px; }
