/*
Theme Name: wkwkplan
Theme URI: https://wkwkplan.co.jp/
Author: 株式会社ワクワクプランニング
Author URI: https://wkwkplan.co.jp/
Description: 株式会社ワクワクプランニング 公式サイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wkwkplan
*/

/* ============================================================
   CSS変数
============================================================ */
:root {
  --blue-900: #1a3a6e;
  --blue-700: #2c6fd8;
  --blue-500: #4285f4;
  --blue-100: #e8f0fe;

  --text:        #1e293b;
  --text-muted:  #64748b;
  --bg:          #ffffff;
  --bg-gray:     #f8faff;
  --border:      #e2e8f0;

  --font: 'Noto Sans JP', 'Meiryo', -apple-system, BlinkMacSystemFont,
          'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;

  --max-w:    1120px;
  --radius:   8px;
  --shadow:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);
}

/* ============================================================
   リセット
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--blue-500); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-700); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

/* ============================================================
   共通レイアウト
============================================================ */
.wrapper {
  width: min(var(--max-w), 100% - 48px);
  margin: 0 auto;
}

/* ============================================================
   サイトヘッダー
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* ロゴ */
.site-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo-link img {
  height: 42px;
  width: auto;
}

/* ============================================================
   グローバルナビ
============================================================ */
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.global-nav li { list-style: none; }
.global-nav a {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.global-nav a:hover { background: var(--bg-gray); color: var(--blue-500); }
.global-nav .current-menu-item > a { color: var(--blue-500); }

/* ハンバーガー（スマートフォン） */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background .15s;
}
.menu-toggle:hover { background: var(--bg-gray); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   ヒーローセクション
============================================================ */
.hero-section {
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 560px;
  height: 560px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section .wrapper { position: relative; z-index: 1; }

.hero-logo {
  max-width: 280px;
  margin: 0 auto 32px;
}
.hero-logo img {
  filter: brightness(0) invert(1);
}
.hero-copy {
  font-size: 1.8rem;
  opacity: .9;
  line-height: 2;
}

/* ============================================================
   汎用セクション
============================================================ */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.section:last-child { border-bottom: none; }

.section > .wrapper > h2,
.section > .wrapper > header > h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
}
.section > .wrapper > h2::after,
.section > .wrapper > header > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--blue-500);
  border-radius: 2px;
}

/* ============================================================
   カードグリッド
============================================================ */
.flex-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--text);
}
.card p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.card p:last-child { margin-bottom: 0; }
.card ul {
  padding-left: 1.4em;
  list-style: disc;
}
.card ul li {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 2;
  list-style: disc;
}
.card a, .text-link {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.card a:hover, .text-link:hover { color: var(--blue-700); }

/* ============================================================
   実績リスト
============================================================ */
.section-note {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  vertical-align: middle;
  margin-left: 8px;
}

.portfolio-note {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 4px 0 8px;
}

.portfolio-articles-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 8px 0 4px;
}

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

.portfolio-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.portfolio-item:last-child {
  border-bottom: none;
}

.portfolio-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.portfolio-client {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.portfolio-client a {
  color: var(--text);
  text-decoration: none;
}

.portfolio-client a:hover {
  color: var(--blue-500);
}

.portfolio-work {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.portfolio-articles {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portfolio-articles li::before {
  content: '→ ';
  color: var(--blue-500);
  font-size: 1.2rem;
}

.portfolio-articles a {
  font-size: 1.35rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portfolio-articles a:hover {
  color: var(--blue-500);
}

/* ============================================================
   サービス：LACフィーチャーブロック
============================================================ */
.service-feature {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 48px;
}

.service-feature__eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-feature__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.service-feature__desc {
  font-size: 1.45rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
}

.service-feature__link {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.service-feature__link:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

/* サービス：支援サービス グループラベル */
.service-group-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================================
   会社概要
============================================================ */
.about-text {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 2.2;
}

.profile {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg-gray);
  border-left: 4px solid var(--blue-500);
  border-radius: var(--radius);
}

.profile-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

.profile-bio {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0 0 12px;
}

.profile-affiliations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.profile-affiliations li {
  font-size: 1.35rem;
  color: var(--text-muted);
}

.profile-affiliations a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-affiliations a:hover {
  color: var(--blue-700);
}

/* ============================================================
   お問い合わせセクション
============================================================ */
.contact-section {
  background: var(--bg-gray);
}

.contact-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 56px 64px;
  max-width: 680px;
  margin: 0 auto;
}

.contact-box > h2 {
  text-align: center;
}

.contact-box > h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-lead {
  text-align: center;
  font-size: 1.45rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ============================================================
   お問い合わせフォーム（Contact Form 7）
============================================================ */
.contact-form { max-width: 100%; }

.wpcf7-form p { margin-bottom: 16px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.5rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(66,133,244,.15);
}
.wpcf7 input[type="submit"] {
  background: var(--blue-500);
  color: #fff;
  border: none;
  padding: 12px 44px;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

/* ============================================================
   固定ページ・投稿 共通レイアウト
============================================================ */
.page-main {
  padding: 64px 0 80px;
}

.page-article {
  max-width: 800px;
  margin: 0 auto;
}

.entry-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.entry-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--text);
}

.entry-content p {
  font-size: 1.6rem;
  line-height: 2.0;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 1.6em;
}

.entry-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
  margin: 2.4em 0 .8em;
  padding-bottom: .4em;
  border-bottom: 2px solid var(--blue-100);
}

.entry-content h3 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  margin: 2em 0 .6em;
}

.entry-content h4 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .03em;
  margin: 1.6em 0 .4em;
}

.entry-content ul,
.entry-content ol {
  font-size: 1.6rem;
  line-height: 2.0;
  letter-spacing: .04em;
  padding-left: 1.6em;
  margin-bottom: 1.6em;
}

.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content li { margin-bottom: .4em; }

.entry-content a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--blue-700); }

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: .8em 0;
}

.entry-content blockquote {
  border-left: 4px solid var(--blue-500);
  padding: 12px 20px;
  margin: 1.6em 0;
  background: var(--bg-gray);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.55rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   フッター
============================================================ */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,.65);
  padding: 48px 0 32px;
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .75;
  margin: 0 auto;
}
.footer-copy {
  font-size: 1.2rem;
}
.footer-copy a { color: rgba(255,255,255,.65); }
.footer-copy a:hover { color: #fff; }

/* ============================================================
   レスポンシブ（タブレット以下）
============================================================ */
@media (max-width: 768px) {
  .site-header-inner { height: 60px; }

  .global-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
  }
  .global-nav.is-open { display: block; }
  .global-nav ul { flex-direction: column; gap: 0; }
  .global-nav a { border-radius: 0; padding: 13px 24px; }

  .menu-toggle { display: flex; }

  .hero-section { padding: 64px 0 52px; }
  .hero-copy { font-size: 1.5rem; }

  .section { padding: 52px 0; }
  .section > .wrapper > h2 { font-size: 2.2rem; }

  .flex-grid { grid-template-columns: 1fr; }

  .service-feature { padding: 28px 24px; margin-bottom: 36px; }
  .service-feature__title { font-size: 2rem; }

  .contact-box { padding: 36px 28px; }

  .page-main { padding: 48px 0 64px; }
  .entry-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .wrapper { width: min(var(--max-w), 100% - 32px); }
  .hero-section { padding: 52px 0 40px; }
  .hero-copy { font-size: 1.4rem; }
  .section { padding: 40px 0; }

  .contact-box { padding: 28px 20px; border-radius: 12px; }

  .entry-title { font-size: 2rem; }
}

/* ============================================================
   LACテンプレート（template-lac.php）
============================================================ */
.tmpl-lac .lac-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.tmpl-lac .lac-header__inner {
  display: flex;
  align-items: center;
  height: 68px;
}
.tmpl-lac .lac-logo-link {
  display: flex;
  align-items: center;
}
.tmpl-lac .lac-logo-link img {
  height: 44px;
  width: auto;
  transition: opacity .2s;
}
.tmpl-lac .lac-logo-link:hover img { opacity: .75; }

.tmpl-lac .lac-main {
  padding: 48px 0 72px;
  background: var(--bg-gray);
}

/* コンテンツ枠 */
.tmpl-lac .lac-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

/* コンテンツ内タイポグラフィ */
.tmpl-lac .lac-content p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1.6em;
}
.tmpl-lac .lac-content p:last-child { margin-bottom: 0; }

.tmpl-lac .lac-content h1,
.tmpl-lac .lac-content h2,
.tmpl-lac .lac-content h3,
.tmpl-lac .lac-content h4 {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2em;
  margin-bottom: .8em;
  color: var(--text);
}
.tmpl-lac .lac-content h1:first-child,
.tmpl-lac .lac-content h2:first-child,
.tmpl-lac .lac-content h3:first-child { margin-top: 0; }

.tmpl-lac .lac-content h1 { font-size: 2.4rem; }
.tmpl-lac .lac-content h2 { font-size: 2rem; border-bottom: 2px solid var(--blue-100); padding-bottom: .4em; }
.tmpl-lac .lac-content h3 { font-size: 1.8rem; }
.tmpl-lac .lac-content h4 { font-size: 1.6rem; }

.tmpl-lac .lac-content ul,
.tmpl-lac .lac-content ol {
  padding-left: 1.8em;
  margin-bottom: 1.6em;
  font-size: 1.6rem;
  line-height: 2;
}
.tmpl-lac .lac-content ul li { list-style: disc; }
.tmpl-lac .lac-content ol li { list-style: decimal; }
.tmpl-lac .lac-content li { margin-bottom: .4em; }

.tmpl-lac .lac-content a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.tmpl-lac .lac-content a:hover { color: var(--blue-700); }

.tmpl-lac .lac-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.2em 0;
}

.tmpl-lac .lac-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin-bottom: 1.6em;
}
.tmpl-lac .lac-content th,
.tmpl-lac .lac-content td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  line-height: 1.7;
}
.tmpl-lac .lac-content th {
  background: var(--bg-gray);
  font-weight: 700;
  text-align: left;
}

/* CF7 フォームをコンテンツ幅に合わせる */
.tmpl-lac .lac-content .wpcf7 { margin-top: 1.6em; }
.tmpl-lac .lac-content .wpcf7-form p { margin-bottom: 1.2em; }

.tmpl-lac .lac-footer {
  background: #0f172a;
  color: rgba(255,255,255,.6);
  padding: 28px 0;
}
.tmpl-lac .lac-footer__copy {
  font-size: 1.2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .tmpl-lac .lac-header__inner { height: 56px; }
  .tmpl-lac .lac-logo-link img { height: 36px; }
  .tmpl-lac .lac-content { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .tmpl-lac .lac-main { padding: 24px 0 48px; }
  .tmpl-lac .lac-content { padding: 24px 16px; border-radius: 0; border-left: none; border-right: none; }
}

/* LAC講義感想会レポート */
.lac-report-archive {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.lac-report-archive > h2 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 2px solid var(--blue-100);
  padding-bottom: .4em;
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--text);
}
.lac-report-card__date {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.lac-report-card__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.lac-report-card__excerpt {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.lac-report-card__more {
  display: inline-block;
  color: var(--blue-500);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}
.lac-report-card__more:hover { color: var(--blue-700); }

.lac-report-back {
  display: inline-block;
  color: var(--blue-500);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
}
.lac-report-back--bottom { margin-top: 40px; margin-bottom: 0; }
.lac-report-back:hover { color: var(--blue-700); }

.lac-about {
  background: var(--blue-100);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-top: 48px;
}
.lac-about__heading {
  font-size: 2rem;
  color: var(--blue-900);
  border-bottom: 2px solid rgba(26,58,110,.2);
  padding-bottom: .4em;
  margin-top: 0;
  margin-bottom: 16px;
}
.lac-about p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.lac-about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.lac-about__list li {
  font-size: 1.5rem;
  line-height: 1.8;
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 8px;
}
.lac-about__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue-700);
  font-weight: 700;
}
.lac-about__lead {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}
.lac-about__cta {
  display: inline-block;
  background: var(--blue-700);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 1.5rem;
}
.lac-about__cta:hover { background: var(--blue-900); color: #fff; }
@media (max-width: 600px) {
  .lac-about { padding: 28px 20px; }
}

.lac-report-link {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.lac-report-link a {
  color: var(--blue-500);
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}
.lac-report-link a:hover { color: var(--blue-700); }

/* LAC CTAバナー（再利用ブロック） */
.lac-cta {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 48px 0 24px;
  text-align: center;
}
.lac-cta h2,
.lac-cta h3 {
  color: #fff;
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 12px;
}
.lac-cta p {
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
  font-size: 1.5rem;
  line-height: 1.8;
}
.lac-cta .wp-block-buttons {
  justify-content: center;
}
.lac-cta .wp-block-button__link {
  background: #fff !important;
  color: var(--blue-700) !important;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.5rem;
}
.lac-cta .wp-block-button__link:hover {
  background: var(--blue-100) !important;
}
@media (max-width: 600px) {
  .lac-cta { padding: 28px 20px; }
}
