/* ============================================
   Global Vista Trading — Sub Page Styles
   Premium 150万円級 Design
   ============================================ */

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.72rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* --- Page Hero --- */
.page-hero {
  position: relative;
  height: 360px;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: transform 8s var(--ease);
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.03);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.page-hero-kicker {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  opacity: 0.6;
  font-style: italic;
}

.page-hero-title {
  font-size: 1.7rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* --- Page Body --- */
.page-body {
  padding: 72px 0 120px;
}

.page-body .container {
  max-width: 840px;
}

/* --- Lead Block --- */
.lead-block {
  margin-bottom: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}

.lead-heading {
  font-size: 1.3rem;
  font-weight: 200;
  color: var(--black);
  line-height: 2;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.lead-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2.1;
}

.lead-text p { margin-bottom: 16px; }
.lead-text p:last-child { margin-bottom: 0; }

.lead-text a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.lead-text a:hover { border-color: var(--gold); }

/* --- Section Block --- */
.section-block {
  margin-bottom: 64px;
}

.section-block:last-child { margin-bottom: 0; }

.block-number {
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
  font-style: italic;
}

.block-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--black);
  letter-spacing: 0.04em;
}

.block-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2.1;
}

.block-body p { margin-bottom: 16px; }

.block-body ul {
  margin: 18px 0;
  padding-left: 0;
}

.block-body ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 0.85rem;
  line-height: 1.75;
  font-weight: 300;
}

.block-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

/* --- Info Table (in-page) --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.info-table th,
.info-table td {
  padding: 15px 18px;
  font-size: 0.83rem;
  vertical-align: top;
  line-height: 1.75;
  border-bottom: 1px solid var(--border-light);
  font-weight: 300;
}

.info-table th {
  width: 160px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-off);
  white-space: nowrap;
}

.info-table td {
  color: var(--text-mid);
}

.info-table td a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.info-table td a:hover { opacity: 0.7; }

/* --- Image with caption --- */
.content-image {
  margin: 36px 0;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-image.half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content-image.half img {
  height: 260px;
}

/* --- Flow Steps --- */
.flow-list {
  margin: 28px 0;
  counter-reset: flow;
}

.flow-item {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.flow-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-display);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
}

.flow-content h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.flow-content p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Highlight Box --- */
.highlight-box {
  background: var(--bg-off);
  border-left: 2px solid var(--gold);
  padding: 28px 32px;
  margin: 28px 0;
}

.highlight-box p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 0;
  font-weight: 300;
}

.highlight-box .box-title {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--black);
}

/* --- FAQ --- */
.faq-list {
  margin: 28px 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
}

.faq-q {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  gap: 12px;
  cursor: pointer;
  line-height: 1.65;
}

.faq-q::before {
  content: 'Q.';
  color: var(--gold);
  font-family: var(--font-en);
  font-weight: 400;
  flex-shrink: 0;
  font-style: italic;
}

.faq-a {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-top: 12px;
  padding-left: 32px;
  font-weight: 300;
}

/* --- CTA (bottom) --- */
.page-cta {
  background: var(--bg-off);
  padding: 64px 0;
  text-align: center;
}

.page-cta-title {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.page-cta-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.9;
  font-weight: 300;
}

.page-cta-btn {
  display: inline-block;
  padding: 15px 52px;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.page-cta-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* --- Related Services --- */
.related-services {
  padding: 64px 0;
}

.related-title {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--black);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.related-card {
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.35s, background 0.35s;
}

.related-card:hover {
  border-color: var(--gold);
  background: var(--bg-off);
}

.related-card-title {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 10px;
}

.related-card-link {
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-en);
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .page-hero {
    height: 280px;
    margin-top: 64px;
  }

  .page-hero-title { font-size: 1.45rem; }

  .content-image.half {
    grid-template-columns: 1fr;
  }

  .info-table th { width: 120px; }
}

@media (max-width: 600px) {
  .page-hero { height: 240px; }
  .page-hero-title { font-size: 1.15rem; }

  .page-body { padding: 48px 0 72px; }

  .lead-heading { font-size: 1.1rem; }
  .block-title { font-size: 1rem; }

  .info-table th,
  .info-table td { padding: 11px 12px; font-size: 0.8rem; }

  .info-table th { width: 100px; }

  .flow-item { gap: 16px; }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
