/* ============================================================
   Personal Asset Planning — 共通スタイル（案1: ネイビー×ゴールド）
   ============================================================ */
* { box-sizing: border-box; }
body { margin: 0; background: #e9e6df; }

.page {
  background: #fff;
  font-family: 'Zen Old Mincho', serif;
  color: #16233d;
  max-width: 1280px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(12,26,51,.15);
  overflow: hidden;
}

/* ---------- keyframes ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes drift { 0% { transform: translate(0,0); } 50% { transform: translate(40px,-30px); } 100% { transform: translate(0,0); } }
@keyframes drift2 { 0% { transform: translate(0,0); } 50% { transform: translate(-50px,35px); } 100% { transform: translate(0,0); } }
@keyframes sheen { 0% { transform: translateX(-120%) skewX(-18deg); } 100% { transform: translateX(320%) skewX(-18deg); } }
@keyframes pulseDot { 0% { transform: scale(1); opacity: 1; } 70% { transform: scale(1.45); opacity: .25; } 100% { transform: scale(1); opacity: 1; } }
@keyframes draw { from { stroke-dashoffset: 760; } to { stroke-dashoffset: 0; } }

/* ---------- header ---------- */
.wb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0c1a33;
  color: #eef2f8;
  padding: 22px 52px;
  gap: 24px;
  flex-wrap: wrap;
}
.wb-logo { line-height: 1.2; }
.wb-logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wb-logo .logo-chip {
  background: #fff;
  border-radius: 5px;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wb-logo .logo-chip img { height: 26px; width: auto; display: block; }
.wb-logo .name {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  letter-spacing: .06em;
}
.wb-logo .dot { color: #c2a15c; }
.wb-logo .sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: #aebbd2;
  margin-top: 3px;
}
.wb-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  flex-wrap: wrap;
}
.wb-nav a {
  color: #eef2f8;
  text-decoration: none;
  transition: color .25s ease;
}
.wb-nav a:hover { color: #c2a15c; }
.wb-nav a.active { color: #c2a15c; }
.wb-contact-btn {
  border: 1px solid #c2a15c;
  color: #e7d4ab;
  padding: 9px 20px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  transition: background .25s ease, color .25s ease;
  white-space: nowrap;
}
.wb-contact-btn:hover { background: #c2a15c; color: #0c1a33; }

/* ---------- hero (TOP) ---------- */
.wb-hero {
  position: relative;
  background: linear-gradient(160deg, #0c1a33, #16294b);
  color: #f3f5fa;
  padding: 108px 52px 122px;
  overflow: hidden;
}
.hero-geo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.wb-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.wb-eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  font-size: 16px;
  letter-spacing: .1em;
  margin: 0 0 18px;
  animation: fadeUp .8s ease both;
}
.wb-hero h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 24px;
  animation: fadeUp .9s ease .12s both;
}
.wb-hero-para {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 2.1;
  color: #c8d2e4;
  margin: 0 0 34px;
  animation: fadeUp .9s ease .24s both;
}
.wb-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .36s both;
}
.btn-gold {
  background: #c2a15c;
  color: #0c1a33;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 15px 32px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  display: inline-block;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(194,161,92,.35);
}
.btn-outline {
  border: 1px solid #56688a;
  color: #e7ecf5;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 15px 30px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease;
  display: inline-block;
}
.btn-outline:hover {
  border-color: #c2a15c;
  transform: translateY(-3px);
}
/* ---------- value (TOP) ---------- */
.wb-value {
  background: #f6f3ec;
  padding: 64px 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.wb-value-item {
  border-top: 2px solid #c2a15c;
  padding-top: 22px;
  transition: transform .3s ease;
}
.wb-value-item:hover { transform: translateY(-6px); }
.wb-value-item .num {
  font-family: 'EB Garamond', serif;
  font-size: 30px;
  color: #c2a15c;
}
.wb-value-item h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 8px 0 12px;
}
.wb-value-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #4a5670;
  margin: 0;
}

/* ---------- seminar reports (TOP) ---------- */
.wb-reports { padding: 68px 52px 72px; }
.wb-reports-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #d8d2c4;
  padding-bottom: 18px;
  margin-bottom: 8px;
  gap: 20px;
  flex-wrap: wrap;
}
.wb-reports-head .titles .eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.wb-reports-head h2 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
}
.wb-reports-head .all-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #7a8298;
  text-decoration: none;
  transition: color .25s ease;
  white-space: nowrap;
}
.wb-reports-head .all-link:hover { color: #c2a15c; }
.wb-report-row {
  display: grid;
  grid-template-columns: 130px 110px 1fr 20px;
  align-items: center;
  gap: 0;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 18px 8px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #ece8de;
  transition: background .25s ease, padding-left .25s ease;
}
.wb-report-row:hover {
  background: #f6f3ec;
  padding-left: 20px;
}
.wb-report-row .date {
  font-family: 'EB Garamond', serif;
  color: #8a91a4;
  font-size: 15px;
}
.wb-tag {
  font-size: 11px;
  padding: 4px 0;
  text-align: center;
  width: 80px;
  border: 1px solid #d8c79c;
  color: #c2a15c;
}
.wb-tag.news {
  color: #7a8298;
  border-color: #cfd3dc;
}
.wb-report-row .title {
  font-size: 14.5px;
  color: #16233d;
}
.wb-report-row .arrow {
  color: #c2a15c;
  text-align: right;
  font-size: 16px;
}

/* ---------- transition / explore (TOP) ---------- */
.wb-explore {
  background: #0c1a33;
  color: #eef2f8;
  padding: 70px 52px;
  text-align: center;
}
.wb-explore .eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.wb-explore h2 {
  font-size: 28px;
  margin: 0 0 40px;
  font-weight: 600;
}
.wb-explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}
.wb-card {
  background: linear-gradient(160deg, #13264a, #0e1d38);
  border: 1px solid #24375c;
  border-radius: 4px;
  padding: 34px 30px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: block;
}
.wb-card:hover {
  transform: translateY(-8px);
  border-color: #c2a15c;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.wb-card .label {
  font-family: 'EB Garamond', serif;
  color: #c2a15c;
  font-size: 14px;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.wb-card .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #c2a15c;
  display: inline-block;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.wb-card h3 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 21px;
  font-weight: 600;
  margin: 14px 0 12px;
}
.wb-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: #aebbd2;
  margin: 0 0 18px;
}
.wb-card .card-link {
  font-family: 'Noto Sans JP', sans-serif;
  color: #c2a15c;
  font-size: 13px;
}

/* ---------- cta ---------- */
.wb-cta {
  background: #08101f;
  color: #f3f5fa;
  padding: 62px 52px;
  text-align: center;
}
.wb-cta h2 {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 600;
}
.wb-cta p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #c8d2e4;
  margin: 0 0 30px;
}
.wb-cta .btn-gold { padding: 16px 46px; }

/* ---------- footer ---------- */
.wb-footer {
  background: #060c17;
  color: #8696b3;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 20px;
  flex-wrap: wrap;
}
.wb-footer .f-name {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: #e7ecf5;
  margin-bottom: 8px;
}
.wb-footer .f-sub { line-height: 1.8; }
.wb-footer .copy { color: #5d6c87; }

/* ============================================================
   下層ページ共通
   ============================================================ */
.sub-hero {
  position: relative;
  background: linear-gradient(160deg, #0c1a33, #16294b);
  color: #f3f5fa;
  padding: 74px 52px 66px;
  overflow: hidden;
}
.sub-hero .drift-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.sub-hero .c-gold {
  width: 300px; height: 300px;
  top: -100px; right: 8%;
  background: radial-gradient(circle, rgba(194,161,92,.2), transparent 70%);
  animation: drift 14s ease-in-out infinite;
}
.sub-hero .eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  font-size: 16px;
  letter-spacing: .1em;
  margin: 0 0 14px;
  animation: fadeUp .8s ease both;
}
.sub-hero h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  animation: fadeUp .9s ease .12s both;
}
.sub-hero .lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 2.1;
  color: #c8d2e4;
  margin: 18px 0 0;
  animation: fadeUp .9s ease .24s both;
}

/* ---------- section base ---------- */
.wb-section { padding: 68px 52px; }
.wb-section.alt { background: #f6f3ec; }
.wb-section .sec-head { margin-bottom: 36px; }
.wb-section .sec-head .eyebrow {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.wb-section .sec-head h2 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
}

/* ---------- mission (会社情報) ---------- */
.wb-mission { max-width: 820px; margin: 0 auto; }
.wb-mission .statement {
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  margin: 0 0 14px;
}
.wb-mission .statement .gold { color: #b08d45; }
.wb-mission .statement-sub {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #c2a15c;
  text-align: center;
  font-size: 15px;
  letter-spacing: .08em;
  margin: 0 0 44px;
}
.wb-mission .body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.5px;
  line-height: 2.3;
  color: #38445f;
}
.wb-mission .body-text p { margin: 0 0 1.6em; }
.wb-mission .quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: #16233d;
  text-align: center;
  line-height: 2;
  border-top: 1px solid #d8c79c;
  border-bottom: 1px solid #d8c79c;
  padding: 26px 16px;
  margin: 40px 0;
}

/* ---------- 会社概要テーブル ---------- */
.wb-company-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
}
.wb-company-table th,
.wb-company-table td {
  border-bottom: 1px solid #e3ddcf;
  padding: 20px 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.wb-company-table th {
  width: 190px;
  font-weight: 600;
  color: #6d5a33;
  font-family: 'Zen Old Mincho', serif;
  white-space: nowrap;
  border-bottom: 1px solid #d8c79c;
}
.wb-company-table td { color: #38445f; }
.wb-company-table .pending { color: #9aa2b5; }
.company-logo { text-align: center; margin: 6px 0 34px; }
.company-logo img { width: 220px; max-width: 60%; height: auto; }

/* ---------- プロフィール ---------- */
.wb-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.wb-profile-body .role {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #b08d45;
  letter-spacing: .1em;
  margin: 0 0 6px;
}
.wb-profile-body .p-name {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 4px;
}
.wb-profile-body .p-name-en {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #8a91a4;
  font-size: 15px;
  letter-spacing: .08em;
  margin: 0 0 28px;
}
.wb-profile-body .bio {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.5px;
  line-height: 2.3;
  color: #38445f;
}
.wb-profile-body .bio p { margin: 0 0 1.5em; }

/* ---------- 経歴タイムライン ---------- */
.wb-timeline {
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.wb-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 0 0 34px 0;
}
.wb-timeline li::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 10px;
  bottom: -10px;
  width: 1px;
  background: #d8c79c;
  transform: translateX(13px);
}
.wb-timeline li:last-child::before { display: none; }
.wb-timeline li::after {
  content: "";
  position: absolute;
  left: 150px;
  top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #c2a15c;
  transform: translateX(9.5px);
}
.wb-timeline .tl-label {
  font-family: 'EB Garamond', serif;
  color: #b08d45;
  font-size: 16px;
  text-align: right;
  padding-right: 8px;
  line-height: 1.6;
}
.wb-timeline .tl-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.5px;
  line-height: 2;
  color: #38445f;
  padding-left: 34px;
}
.wb-timeline .tl-body strong {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16.5px;
  color: #16233d;
  display: block;
  margin-bottom: 4px;
}

/* ---------- サービス ---------- */
.wb-service-block {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 44px;
  max-width: 980px;
  margin: 0 auto;
}
.wb-service-block + .wb-service-block { margin-top: 64px; }
.wb-service-head .num {
  font-family: 'EB Garamond', serif;
  font-size: 44px;
  color: #c2a15c;
  line-height: 1;
}
.wb-service-head .en {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: #b08d45;
  font-size: 14px;
  letter-spacing: .1em;
  margin-top: 10px;
}
.wb-service-body { border-top: 2px solid #c2a15c; padding-top: 24px; }
.wb-service-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.7;
}
.wb-service-body .desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14.5px;
  line-height: 2.2;
  color: #38445f;
  margin: 0 0 24px;
}
.wb-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.wb-topic-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13.5px;
  color: #6d5a33;
  border: 1px solid #d8c79c;
  background: #fbf9f4;
  padding: 9px 22px;
  letter-spacing: .04em;
}
.wb-topic-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  color: #8a91a4;
  margin: 0;
}
.wb-service-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.wb-case {
  border: 1px solid #e3ddcf;
  background: #fbf9f4;
  padding: 24px 26px;
}
.wb-case h4 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #16233d;
}
.wb-case p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #4a5670;
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .wb-service-block { grid-template-columns: 1fr; gap: 18px; }
  .wb-service-block + .wb-service-block { margin-top: 48px; }
  .wb-service-head { display: flex; align-items: baseline; gap: 14px; }
  .wb-service-cases { grid-template-columns: 1fr; }
  .wb-hero { padding: 68px 28px 82px; }
  .wb-hero h1 { font-size: 34px; }
  .wb-value { grid-template-columns: 1fr; gap: 28px; padding: 48px 28px; }
  .wb-reports { padding: 52px 28px; }
  .wb-explore { padding: 56px 28px; }
  .wb-explore-grid { grid-template-columns: 1fr; }
  .wb-cta { padding: 52px 28px; }
  .wb-header { padding: 18px 28px; }
  .wb-footer { padding: 32px 28px; }
  .sub-hero { padding: 56px 28px 50px; }
  .sub-hero h1 { font-size: 30px; }
  .wb-section { padding: 52px 28px; }
  .wb-profile-grid { gap: 32px; }
  .wb-mission .statement { font-size: 21px; }
  .wb-timeline li { grid-template-columns: 110px 1fr; gap: 18px; }
  .wb-timeline li::before { left: 110px; transform: translateX(8px); }
  .wb-timeline li::after { left: 110px; transform: translateX(4.5px); }
  .wb-timeline .tl-body { padding-left: 24px; }
}

@media (max-width: 600px) {
  .wb-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .wb-nav { font-size: 13px; gap: 14px 18px; }
  .wb-hero { padding: 50px 20px 64px; }
  .wb-hero h1 { font-size: 28px; }
  .wb-value { padding: 40px 20px; }
  .wb-reports { padding: 44px 20px; }
  .wb-report-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date tag"
      "title title"
      "arrow arrow";
    gap: 6px 12px;
    padding: 16px 4px;
  }
  .wb-report-row:hover { padding-left: 4px; }
  .wb-report-row .date { grid-area: date; }
  .wb-tag { grid-area: tag; justify-self: start; }
  .wb-report-row .title { grid-area: title; }
  .wb-report-row .arrow { grid-area: arrow; text-align: left; }
  .wb-explore { padding: 44px 20px; }
  .wb-cta { padding: 44px 20px; }
  .wb-cta .btn-gold { padding: 15px 32px; }
  .wb-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 20px;
  }
  .sub-hero { padding: 44px 20px 40px; }
  .sub-hero h1 { font-size: 26px; }
  .wb-section { padding: 44px 20px; }
  .wb-mission .statement { font-size: 18px; }
  .wb-mission .quote { font-size: 17px; }
  .wb-company-table th { width: 110px; }
  .wb-company-table th, .wb-company-table td { padding: 16px 8px; }
  .wb-timeline li { grid-template-columns: 1fr; gap: 4px; padding-bottom: 26px; }
  .wb-timeline li::before, .wb-timeline li::after { display: none; }
  .wb-timeline .tl-label { text-align: left; padding: 0; }
  .wb-timeline .tl-body { padding-left: 0; }
}
