/* ========================================
   合同会社グロースパートナーズ - 共通スタイル
   ======================================== */

/* リセット */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.75;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c-heading);
}

/* ========================================
   カラー変数 - 法人向け(デフォルト)
   ======================================== */
:root {
  /* 法人向けカラー */
  --c-primary: #1f3a5f;          /* ネイビー */
  --c-primary-dark: #15273f;
  --c-primary-light: #2d5078;
  --c-secondary: #6a89a7;        /* ブルーグレー */
  --c-accent: #2d6a4f;           /* 深いグリーン */
  --c-accent-light: #52a37b;
  --c-bg: #fdfcfa;
  --c-bg-alt: #f5f4f0;           /* 温かみのあるオフホワイト */
  --c-bg-soft: #eef2f6;
  --c-text: #2a2a2a;
  --c-text-soft: #5a5a5a;
  --c-text-muted: #8a8a8a;
  --c-heading: #15273f;
  --c-border: #e2e2dc;
  --c-border-soft: #ececec;

  /* やさしいアクセント (チラシより) */
  --c-soft-pink: #f5d6dc;
  --c-soft-green: #c8d8c4;
  --c-soft-cream: #f4ead5;

  /* 共通 */
  --c-white: #ffffff;
  --c-error: #c0392b;
  --c-success: #27ae60;

  /* スペーシング */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* シャドウ */
  --shadow-sm: 0 2px 8px rgba(31, 58, 95, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 58, 95, 0.08);
  --shadow-lg: 0 16px 40px rgba(31, 58, 95, 0.12);

  /* レイアウト */
  --container: 1180px;
  --container-narrow: 880px;
  --header-h: 78px;
}

/* ========================================
   個人向けページ用カラー上書き
   ======================================== */
body.theme-personal {
  --c-primary: #4a8d6f;          /* やわらかいグリーン */
  --c-primary-dark: #356b53;
  --c-primary-light: #6ba88a;
  --c-secondary: #88b4d4;        /* 淡いブルー */
  --c-accent: #d8a87a;           /* ベージュ系アクセント */
  --c-accent-light: #e7c4a0;
  --c-bg: #fefdfa;
  --c-bg-alt: #f3f7f2;
  --c-bg-soft: #f7f4ed;
  --c-text: #3a3a3a;
  --c-heading: #2c5440;
  --c-border: #e0e6dd;
}

/* ========================================
   レイアウト
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-sm {
  padding: var(--space-lg) 0;
}

.section-bg-alt {
  background: var(--c-bg-alt);
}

.section-bg-soft {
  background: var(--c-bg-soft);
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.5rem 0; }
}

/* ========================================
   タイポグラフィ
   ======================================== */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--c-accent);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  margin-bottom: 3rem;
  line-height: 1.95;
  max-width: 720px;
}

p { line-height: 1.95; }

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-soft);
  height: var(--header-h);
  transition: background 0.3s ease;
}

body.theme-personal .site-header {
  background: rgba(254, 253, 250, 0.92);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-logo .logo-image {
  display: block;
  height: 52px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 720px) {
  .site-logo .logo-image {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .site-logo .logo-image {
    height: 36px;
  }
}

/* メインナビ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav ul a {
  font-size: 0.92rem;
  color: var(--c-text);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.04em;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--c-accent);
  transition: width 0.3s ease;
}

.main-nav ul a:hover::after,
.main-nav ul a.is-current::after {
  width: 100%;
}

.main-nav ul a.is-current {
  color: var(--c-primary);
}

/* 個人ページ用コンパクトナビ（9項目を収める） */
body.theme-personal .main-nav ul {
  gap: 1.1rem;
}
body.theme-personal .main-nav ul a {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  body.theme-personal .main-nav { gap: 1rem; }
  body.theme-personal .main-nav ul { gap: 0.7rem; }
  body.theme-personal .main-nav ul a { font-size: 0.78rem; }
  body.theme-personal .header-cta { padding: 0.5rem 1rem; font-size: 0.82rem; }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 58, 95, 0.2);
}

.header-cta:hover {
  background: var(--c-primary-dark);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 58, 95, 0.28);
}

.header-cta::after {
  content: "→";
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.header-cta:hover::after {
  transform: translateX(3px);
}

/* メニュートグル(モバイル) */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  height: 1.5px;
  width: 24px;
  background: var(--c-primary);
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}

.menu-toggle.is-open span:nth-child(2) { opacity: 0; }

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

/* 個人ページ専用：項目が多いため、デスクトップでも早めにハンバーガー化 */
@media (max-width: 1180px) {
  body.theme-personal .menu-toggle { display: block; }
  body.theme-personal .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--c-bg);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  body.theme-personal .main-nav.is-open { right: 0; }
  body.theme-personal .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
  body.theme-personal .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--c-border-soft);
  }
  body.theme-personal .main-nav ul a {
    padding: 1rem 0;
    display: block;
    font-size: 0.95rem;
    width: 100%;
  }
  body.theme-personal .header-cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }

  .main-nav {
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--c-bg);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .main-nav.is-open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--c-border-soft);
  }

  .main-nav ul a {
    padding: 1.1rem 0;
    display: block;
    font-size: 1rem;
  }

  .header-cta { width: 100%; justify-content: center; }
}

/* ========================================
   ヒーローセクション(共通)
   ======================================== */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

body.theme-personal .page-hero::before {
  background: radial-gradient(circle, rgba(74, 141, 111, 0.08) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.page-hero-lead {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  max-width: 720px;
  line-height: 1.95;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1;
}

.btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 6px 18px rgba(31, 58, 95, 0.22);
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.3);
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 6px 18px rgba(45, 106, 79, 0.22);
}

.btn-accent:hover {
  background: #1f4d3a;
  box-shadow: 0 10px 24px rgba(45, 106, 79, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-soft {
  background: var(--c-white);
  color: var(--c-primary);
  border: 1px solid var(--c-border);
}

.btn-soft:hover {
  border-color: var(--c-primary);
  background: var(--c-bg-alt);
}

.btn-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .btn { width: 100%; }
  .btn-cta-group { flex-direction: column; }
}

/* ========================================
   カード
   ======================================== */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }

.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid-3 { grid-template-columns: 1fr; }
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--c-accent);
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--c-heading);
}

.card-text {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,0.78);
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  color: var(--c-white);
  margin-bottom: 1rem;
  font-weight: 600;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
}

.footer-heading {
  color: var(--c-white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.footer-list li { margin-bottom: 0.6rem; }

.footer-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--c-white);
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ========================================
   フローティングLINE CTA(個人向けで使用)
   ======================================== */
.line-floating {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  background: #06c755;
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.line-floating:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.45);
}

.line-floating svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   アニメーション
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ========================================
   水彩風背景パターン(共通装飾)
   ======================================== */
.watercolor-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  filter: blur(40px);
  z-index: 0;
}

/* セクションリンク用カード */
.link-card {
  display: block;
  padding: 2rem;
  background: var(--c-white);
  border: 1px solid var(--c-border-soft);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.link-card:hover {
  opacity: 1;
  border-color: var(--c-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.link-card::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  color: var(--c-primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.link-card:hover::after {
  transform: translateX(5px);
}

/* ========================================
   フォーム共通スタイル
   ======================================== */
.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-heading);
  margin-bottom: 0.65rem;
}

.form-required {
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.7rem;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.form-optional {
  color: var(--c-text-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.08);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-help {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 0.25rem;
}

.form-checkbox-group label,
.form-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.93rem;
  color: var(--c-text);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-white);
  transition: all 0.2s ease;
}

.form-checkbox-group label:hover,
.form-radio-group label:hover {
  border-color: var(--c-primary);
  background: var(--c-bg-alt);
}

.form-checkbox-group input,
.form-radio-group input {
  accent-color: var(--c-primary);
  width: 16px;
  height: 16px;
}

.form-privacy {
  background: var(--c-bg-alt);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.form-privacy-text {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.form-privacy-text a {
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
}

.form-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--c-heading);
  font-weight: 500;
}

.form-privacy-check input {
  accent-color: var(--c-primary);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(31, 58, 95, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form-submit:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(31, 58, 95, 0.3);
}

.form-submit::after {
  content: "→";
  transition: transform 0.3s ease;
}

.form-submit:hover::after { transform: translateX(4px); }

.form-result {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.85;
  display: none;
}

.form-result.is-success {
  display: block;
  background: rgba(45, 106, 79, 0.08);
  border-left: 4px solid var(--c-accent);
  color: var(--c-accent);
}

/* 個人ページのフォームコンテナ */
body.theme-personal .guide-form {
  background: var(--c-white);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(74, 141, 111, 0.08);
  border: 1px solid var(--c-border);
}

@media (max-width: 600px) {
  body.theme-personal .guide-form { padding: 1.75rem 1.5rem; }
}
