/* ============================================================
   layout.css
   header.css + nav-mobile.css + footer.css + cta.css を統合
   ============================================================ */
/* ===== HEADER ===== */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--pink-light);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeDown 0.6s ease;
    padding: 0;
  }

  @keyframes fadeDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 26px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }

  /* headerも section-inner と同じ左右位置に揃える */
  header {
    padding: 0;
  }

  /* PC: header-inner をコンテンツ幅に確実に揃える */
  @media (min-width: 769px) {
    .header-inner {
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 26px;
      padding-right: 26px;
    }
  }

  /* ===== LOGO ===== */
  .logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--pink-main);
    letter-spacing: 0.06em;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
  }
  .logo-sub {
    font-size: 9px;
    font-weight: 400;
    color: var(--gray-text);
    letter-spacing: 0.15em;
    font-family: 'Noto Sans JP', sans-serif;
  }

  /* ===== PC NAV ===== */
  nav {
    display: flex;
    gap: 4px;
    align-items: center;
  }

  /* 通常リンク */
  nav > a, .nav-item > a {
    font-size: 14px;
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  nav > a:hover, .nav-item > a:hover { color: var(--pink-main); background: var(--pink-pale); }

  /* ドロップダウン親 */
  .nav-item {
    position: relative;
  }
  .nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav-item > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .nav-item:hover > a::after { transform: rotate(225deg) translateY(-2px); }

  /* ドロップダウンメニュー - クリック開閉 */
  .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--pink-light);
    border-radius: 12px;
    min-width: 200px;
    padding: 8px 0;
    z-index: 999;
    white-space: nowrap;
    animation: ddFadeIn 0.18s ease;
  }
  @keyframes ddFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .nav-item.is-open .nav-dropdown { display: block; }
  .nav-item.is-open > a { color: var(--pink-main); background: var(--pink-pale); }
  .nav-item.is-open > a::after { transform: rotate(225deg) translateY(-2px); }

  /* ドロップダウン上の三角 */
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-left: 1px solid var(--pink-light);
    border-top: 1px solid var(--pink-light);
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    font-size: 13px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown a:hover { background: var(--pink-pale); color: var(--pink-main); }
  .nav-dropdown a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink-light);
    flex-shrink: 0;
    transition: background 0.15s;
  }
  .nav-dropdown a:hover::before { background: var(--pink-main); }

  .nav-cta {
    background: var(--pink-main);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.2s, transform 0.2s !important;
    margin-left: 8px;
  }
  .nav-cta:hover {
    background: var(--pink-deep) !important;
    transform: translateY(-1px);
  }


  /* ===== SP HEADER ACTIONS（電話・相談ボタン） ===== */
  .sp-header-actions {
    display: none; /* PCは非表示 */
  }

  @media (max-width: 768px) {
    .sp-header-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      margin-right: 8px;
    }
    .sp-header-tel,
    .sp-header-contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      text-decoration: none;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 5px 10px;
      border-radius: 8px;
      transition: background 0.2s, color 0.2s;
      line-height: 1;
    }
    .sp-header-tel {
      color: var(--pink-deep);
      background: var(--pink-pale);
      border: 1px solid var(--pink-light);
    }
    .sp-header-tel:hover { background: var(--pink-light); }
    .sp-header-contact {
      color: #fff;
      background: var(--pink-main);
    }
    .sp-header-contact:hover { background: var(--pink-deep); }
    .sp-header-tel svg,
    .sp-header-contact svg { display: block; }
  }

  /* ===== HERO ===== */

/* ロゴ下ドメイン表示（SP専用） */
.logo-domain {
  display: none;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(75,127,82,0.6);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .logo-domain { display: block; }
}
/* ============================================================
   nav-mobile.css
   ============================================================ */
/* ===== HAMBURGER ===== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1100;
  }

  .hamburger:hover { background: var(--pink-pale); }

  .hamburger span { display: block; width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s; transform-origin: center; }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== MOBILE DRAWER ===== */
  .mobile-nav { display: none; position: fixed; inset: 0; z-index: 1200; pointer-events: none; }
  .mobile-nav.open { pointer-events: all; }

  .mobile-nav-overlay {
    position: absolute; inset: 0;
    background: rgba(58,8,32,0.52);
    opacity: 0; transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .mobile-nav.open .mobile-nav-overlay { opacity: 1; }

  .mobile-nav-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff4f8;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: none;
  }
  .mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

  /* ===== ヘッダー ===== */
  .mobile-nav-header {
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 16px;
    background: white;
    border-bottom: 2px solid var(--pink-light);
    flex-shrink: 0;
  }
  .mobile-nav-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px; font-weight: 700;
    color: var(--pink-main);
    letter-spacing: 0.05em;
  }
  .mobile-nav-close {
    width: 34px; height: 34px;
    background: var(--pink-pale);
    border: 1.5px solid var(--pink-light);
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--navy);
    transition: background 0.2s, border-color 0.2s;
  }
  .mobile-nav-close:hover { background: var(--pink-light); border-color: var(--pink-main); }

  /* ===== タブバー ===== */
  .nav-tab-bar {
    display: flex;
    border-bottom: 2px solid var(--pink-light);
    flex-shrink: 0;
    background: white;
  }
  .nav-tab-btn {
    flex: 1;
    padding: 9px 2px 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px; font-weight: 600;
    color: var(--navy);
    opacity: 0.45;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s, opacity 0.2s;
    white-space: nowrap;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
  }
  .nav-tab-btn.active {
    color: var(--pink-main);
    border-bottom-color: var(--pink-main);
    opacity: 1;
  }
  .nav-tab-btn:hover { color: var(--pink-main); opacity: 1; }

  /* ===== タブコンテンツ ===== */
  .nav-tab-pane {
    padding: 14px 16px;
    flex: 1;
    overflow-y: auto;
  }
  .nav-tab-pane.hidden { display: none; }

  /* ===== 2列グリッドカード ===== */
  .nav-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .nav-tab-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 8px;
    background: white;
    border: 1.5px solid var(--pink-light);
    border-radius: 14px;
    text-decoration: none;
    color: var(--navy);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.45;
    box-shadow: none;
    transition: border-color 0.2s, transform 0.15s, color 0.2s;
    min-height: 96px;
  }
  .nav-tab-card:hover {
    border-color: var(--pink-main);
    box-shadow: none;
    transform: translateY(-3px);
    color: var(--pink-deep);
  }
  .nav-tab-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--pink-main);
    border: none;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    box-shadow: none;
  }
  .nav-tab-card-icon svg {
    width: 22px; height: 22px;
    stroke: white;
    transition: stroke 0.2s;
  }
  .nav-tab-card:hover .nav-tab-card-icon {
    background: var(--pink-deep);
    transform: scale(1.08);
  }
  .nav-tab-card:hover .nav-tab-card-icon svg {
    stroke: white;
  }

  /* タブボタンのSVG */
  .nav-tab-btn svg {
    width: 15px; height: 15px;
    stroke: currentColor;
    display: block;
    margin: 0 auto 3px;
  }
  .nav-tab-card-label { line-height: 1.45; }

  /* ===== LINEバナー ===== */
  .nav-line-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #06C755;
    border-radius: 14px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: none;
  }
  .nav-line-banner:hover { opacity: 0.88; transform: translateY(-2px); }

  .nav-line-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
  }

  .nav-line-text {
    flex: 1;
    display: flex; flex-direction: column; gap: 2px;
  }
  .nav-line-title {
    font-size: 15px; font-weight: 700;
    color: white;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .nav-line-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.03em;
  }

  .nav-line-arrow { color: rgba(255,255,255,0.7); flex-shrink: 0; }

  /* ===== 応募CTAボタン ===== */
  .mobile-nav-cta-wrap { padding: 16px 16px 88px; } /* 固定フッター分の余白 */
  .mobile-nav-cta {
    display: block !important;
    width: 100%;
    background: linear-gradient(135deg, var(--pink-main), var(--pink-deep)) !important;
    color: white !important;
    font-size: 16px !important; font-weight: 700 !important;
    padding: 18px !important;
    border-radius: 14px !important;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    letter-spacing: 0.08em;
  }
  .mobile-nav-cta:hover {
    transform: translateY(-2px) !important;
    opacity: 0.9 !important;
  }
  .mobile-nav-cta::before { display: none !important; }

  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .flow-steps { max-width: 100%; }
    .logo { font-size: 16px; }
    .logo-sub { font-size: 10px; }

    /* ===== HERO SP ===== */
    .hero-inner {
      padding: 0 16px;
    }
    .hero-badge {
      font-size: 11px;
      padding: 6px 16px 6px 14px;
      margin-bottom: 12px;
    }
    .hero-slide h1 {
      font-size: clamp(26px, 7vw, 38px);
      margin-bottom: 14px;
      line-height: 1.45;
    }
    .hero-sub {
      font-size: 13px;
      line-height: 1.75;
      margin-bottom: 16px;
      max-width: 100%;
    }
    .hero-tags {
      gap: 6px;
      margin-bottom: 26px;
    }
    .tag {
      font-size: 12px;
      padding: 5px 12px;
    }
    .btn-primary {
      font-size: 14px;
      padding: 12px 28px;
    }
    .hero-slider .slick-dots {
      bottom: 12px;
    }
  }
/* ===== col-thumb noimage 追加スタイル ===== */
/* ============================================================
   footer.css
   ============================================================ */
/* ===== FOOTER ===== */
  footer {
    background: var(--pink-pale);
    color: var(--navy);
    text-align: center;
    padding: 32px 0 26px;
    font-size: 14px;
    border-top: 1px solid rgba(75,127,82,0.20);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 26px;
    box-sizing: border-box;
  }

  .footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px; color: var(--navy);
    margin-bottom: 16px; font-weight: 600;
  }

  .footer-links {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 6px 20px;
    margin-bottom: 18px;
  }
  .footer-links a {
    color: var(--navy);
    text-decoration: none; font-size: 12px;
    font-weight: 500; letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--pink-deep); }

  .footer-copy {
    font-size: 11px; color: rgba(75,127,82,0.55);
    letter-spacing: 0.04em; margin: 0;
  }

  /* ===== FLOATING BUTTON ===== */
  .floating-btn {
    position: fixed;
    bottom: 20px; /* JS で動的更新 */
    right: 16px;
    background: rgba(30,34,64,0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 900;
    transition: transform 0.2s, opacity 0.2s, bottom 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  .floating-btn:hover { transform: translateY(-3px); opacity: 1; color: #fff; }

  /* ===== FIXED FOOTER NAV ===== */
  .fixed-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--pink-pale);
    border-top: 1px solid rgba(75,127,82,0.20);
    z-index: 1101;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  .fixed-footer.visible { transform: translateY(0); }

  .fixed-footer-ul {
    list-style: none;
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* li均等分割 */
  .fixed-footer-ul li {
    flex: 1;
    display: flex;
    min-width: 0;
  }

  /* 応募ボタンのliだけ広め */
  .fixed-footer-ul li:last-child {
    flex: 1.5;
  }

  /* 区切り線 */
  .fixed-footer-ul li + li {
    border-left: 1px solid rgba(75,127,82,0.15);
  }

  .fixed-footer-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    text-decoration: none;
    color: var(--navy);
    font-size: clamp(10px, 2.2vw, 12px);
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    background: none; border: none;
    padding: 0.7em 0.5em;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
  }

  .fixed-footer-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(150,232,188,0.0);
    transition: background 0.2s;
  }

  .fixed-footer-item:hover::before,
  .fixed-footer-item:active::before {
    background: rgba(75,127,82,0.08);
  }

  .fixed-footer-item:hover  { color: var(--pink-deep); }
  .fixed-footer-item:active { color: var(--pink-deep); }

  /* 応募ボタンだけ強調 */
  .fixed-footer-item.highlight {
    background: linear-gradient(135deg, #7DD181, #4B7F52);
    color: rgba(255,255,255,0.9);
    font-size: clamp(11px, 2.4vw, 13px);
    border-left: 1px solid rgba(255,255,255,0.15);
  }

  .fixed-footer-item.highlight::before { display: none; }
  .fixed-footer-item.highlight:hover { filter: brightness(1.1); }

  .ff-icon {
    aspect-ratio: 1;
    width: clamp(28px, 7vw, 34px);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1em;
    background: rgba(75,127,82,0.10);
    transition: background 0.2s, transform 0.2s;
    position: relative; z-index: 1;
    flex-shrink: 0;
  }

  .fixed-footer-item.highlight .ff-icon {
    background: rgba(255,255,255,0.2);
  }

  .fixed-footer-item:hover .ff-icon { background: rgba(75,127,82,0.18); transform: translateY(-2px); }
  .fixed-footer-item.highlight:hover .ff-icon { transform: translateY(-2px); }

  .ff-label { position: relative; z-index: 1; line-height: 1; white-space: nowrap; }

  /* セーフエリア対応（iPhone等） */
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .fixed-footer {
      padding-bottom: env(safe-area-inset-bottom);
    }
  }

  /* PC では非表示 */
  @media (min-width: 769px) {
    .fixed-footer { display: none !important; }
    .floating-btn {
      right: 28px;
      bottom: 28px;
      width: 40px;
      height: 40px;
    }
  }
/* ============================================================
   cta.css
   ============================================================ */
/* ============================================================
   cta.css  —  CTAテンプレートパーツ統合版
   
   テーマ:
     A: .pcta           固定ページ用（ライトローズ）
     A: .pcta--dark     ネイビーダーク
     A: .pcta--line     グリーン（LINE）
     B: .ptcta          投稿/archive用（ネイビーダーク）
   
   写真入りCTA: .pcta--photo（両テーマで使用可）
   ============================================================ */

/* =============================================
   共通変数・ベース
   ============================================= */
.pcta,
.ptcta {
  width: 100%;
  margin-top: 60px;
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 上部ピンクライン（共通） */
.pcta::before,
.ptcta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--pink-main), var(--pink-deep));
  z-index: 2;
}

/* =============================================
   A. .pcta  固定ページ用（ライトローズ）
   ============================================= */
.pcta {
  background: linear-gradient(150deg, var(--pink-deep) 0%, var(--pink-main) 55%, var(--mint) 100%);
}

/* SP用ヘッダー: PC時は非表示 */
.pcta-photo-sp-header { display: none; }

/* PC時: sp-headerの中身は非表示・通常表示 */
.pcta-hide-sp { display: block; }

/* 装飾円A：右下にはみ出す円 */
.pcta-inner::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
}

/* 装飾円B：左端にはみ出す薄い大円 */
.pcta-inner::before {
  content: '';
  position: absolute;
  left: calc(-50vw + 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
  z-index: 0;
}

/* 装飾円C：右上の中円 */
.pcta-inner::after {
  content: '';
  position: absolute;
  right: calc(-50vw + 80px);
  top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
  z-index: 0;
}

.pcta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 26px;
}

.pcta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
}

.pcta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 14px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.pcta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  margin-bottom: 0;
}

.pcta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

/* ボタン共通 */
.pcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform .2s, background .2s, ;
}

.pcta-btn--primary {
  background: var(--yellow);
  color: #7A5000;
  box-shadow: none;
  border: none;
}
.pcta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: none;
  background: #FFD87A;
  color: #7A5000;
}

.pcta-btn--sub {
  background: transparent;
  color: rgba(255,255,255,0.90);
  border: 2px solid rgba(255,255,255,.35);
}
.pcta-btn--sub:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.75);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- ダークテーマ上書き（ピンクグラデ） ---- */
.pcta--dark {
  background: linear-gradient(160deg, var(--pink-deep) 0%, var(--pink-deep) 45%, var(--pink-main) 100%);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.pcta--dark::after {
  right: -80px; bottom: -80px; left: auto; top: auto;
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.04);
}
.pcta--dark .pcta-inner::before {
  background: rgba(255,255,255,0.10);
}
.pcta--dark .pcta-inner::after {
  background: rgba(150,232,188,0.12);
}
.pcta--dark .pcta-eyebrow { color: rgba(150,232,188,.75); }
.pcta--dark .pcta-title   { color: #fff; }
.pcta--dark .pcta-sub     { color: rgba(255,255,255,.55); }
.pcta--dark .pcta-btn--primary {
  background: #fff;
  color: var(--pink-main);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.pcta--dark .pcta-btn--primary:hover { color: var(--pink-deep); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.pcta--dark .pcta-btn--sub {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 2px solid rgba(255,255,255,.25);
}
.pcta--dark .pcta-btn--sub:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ---- LINE テーマ ---- */
.pcta--line {
  background: linear-gradient(160deg, #e8faf0 0%, #d1f5e0 50%, #b8efd0 100%);
}
.pcta--line::before { background: linear-gradient(to right, #06C755, #04a844); }
.pcta--line::after  { background: radial-gradient(circle, rgba(6,199,85,.08) 0%, transparent 70%); }
.pcta--line .pcta-eyebrow { color: #06C755; }
.pcta--line .pcta-title   { color: #1a3a2a; }

.pcta-btn--line {
  background: #06C755;
  color: #fff;
  box-shadow: none;
}
.pcta-btn--line:hover {
  background: #05b34c;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: none;
}
.pcta-line-icon { width: 20px; height: 20px; flex-shrink: 0; }


/* =============================================
   ダークテーマ 写真入り .ptcta--photo
   ============================================= */
.ptcta--photo {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

/* 装飾円1：左端はみ出し大円（白薄め） */
.ptcta--photo::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  z-index: 0;
  pointer-events: none;
}

/* 装飾円2：右上の中円（ピンクアクセント） */
.ptcta--photo::after {
  content: '';
  position: absolute;
  right: 300px;
  top: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(150,232,188,0.18);
  z-index: 0;
  pointer-events: none;
}

/* テキスト色 */
.ptcta--photo .ptcta-eyebrow { color: rgba(150,232,188,.85); }
.ptcta--photo .ptcta-title   { color: #fff; }
.ptcta--photo .ptcta-sub     { color: rgba(255,255,255,.65); }
.ptcta--photo .ptcta-btns    { justify-content: flex-start; margin-top: 32px; }

/* deco文字は非表示（写真と干渉するため） */
.ptcta--photo .ptcta-deco { display: none; }

/* 写真入りCTA  .pcta--photo
   1カラム：装飾円＋人物を右に絶対配置
   ============================================= */
.pcta--photo {
  padding: 0;
  text-align: left;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--pink-deep) 45%, var(--pink-main) 100%);
}

/* 装飾円1：左端に大きくはみ出す薄い円 */
.pcta--photo::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(150,232,188,0.09);
  z-index: 0;
}

/* 装飾円2：右上の中くらい・やや濃い円 */
.pcta--photo::after {
  content: '';
  position: absolute;
  right: 300px;
  top: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(150,232,188,0.14);
  z-index: 0;
}

/* テキストエリア */
.pcta-photo-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 68px;
}

/* 右下の大きな装飾円（ライト） */
.pcta--photo .pcta-photo-wrap::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(150,232,188,0.08);
  z-index: 0;
  pointer-events: none;
}

.pcta-photo-content {
  max-width: 600px;
  padding: 68px 0;
}

.pcta--photo .pcta-eyebrow { color: rgba(255,255,255,0.80); }
.pcta--photo .pcta-title   { color: #fff; }
.pcta--photo .pcta-sub     { color: rgba(255,255,255,0.80); }
.pcta--photo .pcta-btns    { justify-content: flex-start; margin-top: 32px; }

/* テキストエリア左下のアクセント小円 */
.pcta-photo-content {
  position: relative;
}
.pcta-photo-content::after {
  content: '';
  position: absolute;
  left: -32px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(150,232,188,0.18);
  z-index: 0;
}

/* 人物：右側に絶対配置 */
.pcta-photo-img {
  position: absolute;
  right: calc(50% - 550px + 24px);
  bottom: 0;
  width: 360px;
  z-index: 3;
  pointer-events: none;
}

/* 人物背後：大きめ・存在感ある円（ライト） */
.pcta-photo-img::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-55%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(150,232,188,0.2);
  z-index: -1;
}

/* 人物左：小さいアウトライン円（ライト） */
.pcta-photo-img::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 30%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid rgba(150,232,188,0.35);
  z-index: -1;
}

/* ダークテーマ：人物背後円→白ベース */
.ptcta--photo .pcta-photo-img::before {
  background: rgba(255,255,255,0.07);
}
/* ダークテーマ：アウトライン円→白 */
.ptcta--photo .pcta-photo-img::after {
  border-color: rgba(255,255,255,0.22);
}
/* ダークテーマ：右下大円 */
.ptcta--photo .pcta-photo-img {
  /* 右下装飾円をbox-shadowで代用 */
}
/* ダークテーマ：テキスト左下アクセント円 */
.ptcta--photo .pcta-photo-content::after {
  background: rgba(255,255,255,0.06);
}
/* ダークテーマ：右下に大きな円（ピンクアクセント） */
.ptcta--photo .pcta-photo-wrap::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(150,232,188,0.12);
  z-index: 0;
  pointer-events: none;
}
/* ダークテーマ：写真にソフトなglow */
.ptcta--photo .pcta-photo-img img {
  filter: drop-shadow(0 8px 32px rgba(150,232,188,0.2));
}
/* ダークテーマ：タイトル幅を広げて改行を防ぐ */
.ptcta--photo .pcta-photo-content {
  max-width: 560px;
  padding: 56px 0;
}

/* ダークテーマ PC版: photo-wrapをrelativeにして写真の絶対配置基準を確保 */
.ptcta--photo .pcta-photo-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 68px;
  min-height: 320px;
}

.pcta-photo-img img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -4px;
  filter: drop-shadow(0 8px 20px rgba(180,20,80,0.12));
}

/* ===== レスポンシブ ===== */
@media (max-width: 1200px) {
  .pcta-photo-img { right: 16px; width: 300px; }
  .pcta-photo-content { max-width: 460px; }
  .pcta--photo::after { right: 80px; }
}

@media (max-width: 900px) {
  .pcta-photo-img { width: 240px; }
  .pcta-photo-content { max-width: 380px; }
}

@media (max-width: 640px) {
  .pcta--photo {
    min-height: 0 !important;
    overflow: hidden;
    padding: 0;
    margin-top: 60px;
  }
  .pcta--photo::before,
  .pcta--photo::after { display: none; }
  .pcta--photo .pcta-photo-wrap::after { display: none; }

  /* SP上部ヘッダー */
  .pcta-photo-sp-header {
    display: block;
    padding: 6px 14px 4px;
    text-align: left;
  }
  .pcta-photo-sp-header .pcta-eyebrow,
  .pcta-photo-sp-header .ptcta-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
    text-align: center;
    color: rgba(255,255,255,0.75) !important;
  }
  .pcta-photo-sp-header .pcta-title,
  .pcta-photo-sp-header .ptcta-title {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin: 0;
  }
  .pcta-hide-sp { display: none !important; }

  /* グリッド: テキスト左 55% / 写真右 45% */
  .pcta-photo-wrap {
    display: grid !important;
    grid-template-columns: 55% 45% !important;
    align-items: flex-end !important;
    padding: 0 !important;
    min-height: unset !important;
    gap: 0 !important;
  }

  .pcta-photo-content {
    padding: 4px 4px 16px 14px !important;
    text-align: left !important;
    order: 1 !important;
  }

  .pcta--photo .pcta-photo-content .pcta-eyebrow,
  .pcta--photo .pcta-photo-content .pcta-title { display: none !important; }

  .pcta--photo .pcta-sub {
    font-size: 12px !important;
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
  }

  .pcta--photo .pcta-btns {
    justify-content: flex-start !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .pcta-btn,
  .btn-cta-sub {
    width: auto !important;
    font-size: 13px !important;
    padding: 10px 20px !important;
    min-width: 0;
  }

  /* 写真: 右カラム・底面接地 */
  .pcta-photo-img {
    display: block !important;
    order: 2 !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 0;
    align-self: flex-end !important;
    opacity: 1 !important;
  }
  .pcta-photo-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    filter: none !important;
  }
  .pcta-photo-img::before,
  .pcta-photo-img::after { display: none; }
  .pcta-photo-content::after { display: none; }

  /* ダークテーマ（ptcta--photo）*/
  .ptcta--photo {
    padding: 0 !important;
    min-height: auto;
    overflow: hidden;
  }
  .ptcta--photo::before,
  .ptcta--photo::after { display: none; }
  .ptcta--photo .pcta-photo-wrap {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: flex-end;
    padding: 0;
    min-height: unset;
    gap: 0;
  }
  .ptcta--photo .pcta-photo-content {
    padding: 4px 4px 16px 14px !important;
    text-align: left;
  }
  .ptcta--photo .pcta-photo-content .ptcta-eyebrow,
  .ptcta--photo .pcta-photo-content .ptcta-title { display: none !important; }
  .ptcta--photo .ptcta-sub {
    font-size: 11px !important;
    line-height: 1.75 !important;
    margin-bottom: 12px !important;
  }
  .ptcta--photo .ptcta-btns,
  .ptcta--photo .pcta-btns {
    justify-content: flex-start;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-top: 0;
    padding: 0 !important;
  }
  .ptcta--photo .ptcta-btn,
  .ptcta--photo .pcta-btn,
  .ptcta--photo .btn-white,
  .ptcta--photo .btn-cta-sub {
    width: auto !important;
    font-size: 12px !important;
    padding: 10px 16px !important;
    min-width: 120px;
  }
  .ptcta--photo .pcta-photo-img {
    display: block !important;
    width: 180px !important;
    margin: 0 !important;
    opacity: 1 !important;
    align-self: flex-end;
    line-height: 0;
  }
  .ptcta--photo .pcta-photo-img img {
    width: 180px;
    height: auto;
    filter: none;
  }
  .ptcta--photo .pcta-photo-wrap::after { display: none; }
}

/* =============================================
   B. .ptcta  投稿/archive用（ネイビーダーク）
   ============================================= */
.ptcta {
  background: linear-gradient(160deg, var(--pink-deep) 0%, var(--pink-deep) 45%, var(--pink-main) 100%);
}

.ptcta-deco {
  position: absolute;
  right: -12px; bottom: -24px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(68px, 16vw, 180px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* 装飾円A：右下に大きく薄い */
.ptcta::after {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
}

/* 装飾円B：左端にはみ出す大円 */
.ptcta-inner::before {
  content: '';
  position: absolute;
  left: calc(-50vw + 24px);
  top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  pointer-events: none;
  z-index: 0;
}

/* 装飾円C：右上の中円 */
.ptcta-inner::after {
  content: '';
  position: absolute;
  right: calc(-50vw + 80px);
  top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(150,232,188,0.1);
  pointer-events: none;
  z-index: 0;
}

.ptcta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 26px;
}

.ptcta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(150,232,188,.75);
  margin-bottom: 16px;
}

.ptcta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 14px;
}

.ptcta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
}

.ptcta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.ptcta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform .2s, background .2s;
}

.ptcta-btn--primary {
  background: #fff;
  color: var(--pink-main);
}
.ptcta-btn--primary:hover { transform: translateY(-3px); color: var(--pink-deep); }

.ptcta-btn--sub {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 2px solid rgba(255,255,255,.25);
}
.ptcta-btn--sub:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   旧 .cta-section（トップページ互換）
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--pink-main) 0%, var(--pink-deep) 100%);
  text-align: center;
  padding: 68px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'APPLY';
  position: absolute;
  right: -8px; bottom: -16px;
  font-size: 200px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.cta-section .section-inner { position: relative; z-index: 1; }
.cta-title { font-family: 'Noto Serif JP', serif; font-size: clamp(22px,4vw,36px); color: #fff; font-weight: 600; margin-bottom: 12px; }
.cta-sub   { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.9; }
.cta-btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--pink-main);
  font-size: 15px; font-weight: 700;
  padding: 15px 40px; border-radius: 42px;
  text-decoration: none;
  transition: transform .2s, ;
  cursor: pointer; border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.22); color: var(--pink-main); }

.btn-cta-sub {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,.85);
  font-size: 15px; font-weight: 700;
  padding: 15px 40px; border-radius: 42px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.35);
  transition: transform .2s, background .2s, border-color .2s;
}
.btn-cta-sub:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 768px) {
  .pcta--photo .pcta-photo-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pcta--photo .pcta-photo-content {
    padding: 68px 0 26px;
    text-align: center;
  }
  .pcta--photo .pcta-btns { justify-content: center; }
  .pcta-photo-img {
    width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .pcta,
  .ptcta { padding: 36px 0 56px; }
  /* 写真入りは下余白ゼロで写真を底面に接地させる */
  .pcta--photo,
  .ptcta--photo { padding-bottom: 0 !important; }
  .pcta-btns,
  .ptcta-btns,
  .cta-btn-group { flex-direction: column; gap: 10px; padding: 0 20px; }
  .pcta-btn,
  .ptcta-btn,
  .btn-white,
  .btn-cta-sub { width: 100%; }
  .pcta-inner,
  .ptcta-inner { padding: 0 20px; }
  /* 写真入りダークCTAのボタンは幅auto */
  .ptcta--photo .ptcta-btn,
  .ptcta--photo .pcta-btn { width: auto; }
  /* SP時タイトルサイズ縮小 */
  .pcta-title,
  .ptcta-title { font-size: clamp(18px, 5.5vw, 24px); }
}
