@charset "UTF-8";

/* ==========================================================================
   NOMURA SECURITIES (野村證券) OFFICIAL DESIGN SYSTEM
   ========================================================================== */

:root {
  --nomura-red: #c8102e;
  --nomura-red-hover: #a50b23;
  --nomura-red-light: #fdf2f4;
  --nomura-navy: #002b49;
  --nomura-navy-dark: #001c30;
  --nomura-navy-light: #0d3d63;
  --nomura-gold: #c5a059;
  --nomura-gold-light: #f7f3eb;
  
  --line-green: #06c755;
  --line-green-hover: #05b04c;
  
  --text-primary: #222222;
  --text-secondary: #555555;
  --text-muted: #777777;
  --text-light: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-gray: #f4f6f8;
  --bg-gray-dark: #e8ecf1;
  
  --border-light: #e2e8f0;
  --border-color: #d1d9e2;
  --border-focus: #c8102e;
  
  --shadow-sm: 0 2px 6px rgba(0, 43, 73, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 43, 73, 0.08);
  --shadow-lg: 0 10px 28px rgba(0, 43, 73, 0.12);
  --shadow-red: 0 6px 20px rgba(200, 16, 46, 0.25);
  
  --font-main: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --transition: all 0.25s ease-in-out;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP UTILITY BAR & HEADER (野村證券 ヘッダー)
   ========================================================================== */

.nomura-header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  z-index: 1000;
  border-bottom: 1px solid #222222;
}

/* Top utility bar */
.top-utility-bar {
  background-color: #000000;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.78rem;
  color: #a0a0a0;
  padding: 4px 0;
}

.top-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-links a {
  color: #cccccc;
  transition: var(--transition);
}

.utility-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.utility-right-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.utility-right-menu a {
  color: #cccccc;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.utility-right-menu a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .top-utility-bar {
    padding: 7px 0;
    border-bottom: 1px solid #222222;
  }
  .top-utility-inner {
    min-height: 24px;
    padding: 0 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .top-utility-inner::-webkit-scrollbar {
    display: none;
  }
  .utility-links {
    gap: 0.85rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .utility-right-menu {
    display: none; /* Keep top bar clean and spacious on mobile */
  }
}

@media (max-width: 480px) {
  .top-utility-bar {
    padding: 6px 0;
  }
  .top-utility-inner {
    padding: 0 10px;
  }
  .utility-links {
    gap: 0.7rem;
    font-size: 0.7rem;
  }
}

/* Main Header */
.main-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
  background: #000000;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-nomura-img {
  height: 32px;
  max-height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-nomura-text {
  color: #ffffff !important;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-decoration: none;
}

@media (max-width: 767px) {
  .main-header-inner {
    height: 56px;
  }
  .brand-nomura-img {
    height: 25px;
    max-height: 25px;
  }
  .brand-nomura-text {
    font-size: 1.15rem;
  }
}

.header-nav {
  display: none;
}

@media (min-width: 992px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav-item {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--nomura-red);
  transition: var(--transition);
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #ca2420;
  border: 1px solid #ca2420;
  border-radius: 2px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-header-login:hover {
  background-color: #981713;
  border-color: #981713;
}

.btn-header-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--nomura-red);
  border: 1px solid var(--nomura-red);
  border-radius: 2px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.35);
}

.btn-header-apply:hover {
  background-color: var(--nomura-red-hover);
}

.btn-apply-desktop {
  display: inline;
}

.btn-apply-mobile {
  display: none;
}

@media (max-width: 767px) {
  .header-actions {
    gap: 0.35rem;
  }

  .btn-header-login {
    padding: 0.3rem 0.6rem;
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .btn-header-login svg {
    width: 11px;
    height: 11px;
  }

  .btn-header-apply {
    padding: 0.3rem 0.65rem;
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .btn-apply-desktop {
    display: none;
  }

  .btn-apply-mobile {
    display: inline;
  }
}

@media (max-width: 480px) {
  .main-header-inner {
    padding: 0 10px;
  }

  .header-brand {
    gap: 0.4rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .btn-header-login {
    padding: 0.25rem 0.45rem;
    font-size: 0.68rem;
  }

  .btn-header-apply {
    padding: 0.25rem 0.5rem;
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   LIVE MARKET TICKER BAR (リアルタイム マーケット情報)
   ========================================================================== */

.market-ticker-bar {
  background: var(--nomura-navy-dark);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ticker-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #94a3b8;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.ticker-items::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.ticker-name {
  color: #cbd5e1;
  font-weight: 500;
}

.ticker-val {
  font-weight: 700;
  font-feature-settings: "tnum";
}

.ticker-change {
  font-size: 0.75rem;
  font-weight: 700;
}

.ticker-change.up {
  color: #ef4444;
}

.ticker-change.down {
  color: #3b82f6;
}

/* ==========================================================================
   IMPORTANT ALERT BULLETIN (重要なお知らせ)
   ========================================================================== */

.bulletin-alert-box {
  background-color: var(--nomura-red-light);
  border-bottom: 1px solid rgba(200, 16, 46, 0.15);
  padding: 0.65rem 0;
  font-size: 0.85rem;
}

.bulletin-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bulletin-badge {
  background-color: var(--nomura-red);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
}

.bulletin-text {
  color: #881337;
  font-weight: 500;
  line-height: 1.4;
}

.bulletin-text a {
  color: var(--nomura-red);
  text-decoration: underline;
  font-weight: 700;
}

.bulletin-text a:hover {
  color: var(--nomura-red-hover);
}

/* ==========================================================================
   HERO MAIN VISUAL SECTION (野村證券 メインビジュアル)
   ========================================================================== */

.hero-section-nomura {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-main-banner {
  position: relative;
  width: 100%;
}

.hero-picture img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .hero-overlay-card {
    margin: -30px 15px 20px;
    position: relative;
    z-index: 10;
  }
}

.hero-subtag {
  display: inline-block;
  color: var(--nomura-red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-heading-main {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--nomura-navy);
  line-height: 1.35;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.hero-lead-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--nomura-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
  transition: var(--transition);
}

.hero-btn-primary:hover {
  background-color: var(--nomura-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.35);
}

.hero-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--line-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
  transition: var(--transition);
}

.hero-btn-line:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.35);
}

/* Quick Action 3 Buttons Under Hero */
.quick-action-strip {
  padding: 1.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.quick-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--nomura-navy);
  transition: var(--transition);
}

.quick-action-card:hover {
  background: #ffffff;
  border-color: var(--nomura-red);
  box-shadow: var(--shadow-md);
  color: var(--nomura-red);
  transform: translateY(-2px);
}

.quick-action-card.highlight {
  background: var(--nomura-red-light);
  border-color: rgba(200, 16, 46, 0.25);
  color: var(--nomura-red);
}

/* ==========================================================================
   OFFICIAL REGISTRATION & REPORT FORM CARD (野村證券 お申込みフォーム)
   ========================================================================== */

.form-section-nomura {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background-color: #001f35;
}

.form-section-nomura::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: url("images/img_main.jpg") center center / cover no-repeat;
  filter: blur(5px) brightness(0.72);
  transform: scale(1.04);
  z-index: 1;
}

.form-section-nomura .container {
  position: relative;
  z-index: 2;
}

.nomura-form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  border-top: 4px solid #ca2420;
  box-shadow: 0 12px 32px rgba(0, 20, 40, 0.35);
  overflow: hidden;
}

.form-header-bar {
  background: linear-gradient(135deg, #002b49 0%, #001828 100%);
  color: #ffffff;
  padding: 1.75rem 2rem;
  text-align: center;
  position: relative;
}

.form-header-badge {
  display: inline-block;
  background: #ca2420;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.form-header-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  font-family: var(--font-main);
}

.form-header-subtitle {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Countdown bar inside form */
.form-countdown-box {
  background: #fdf2f4;
  border-bottom: 1px solid #fecdd3;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #881337;
}

.form-countdown-box strong {
  color: #ca2420;
  font-size: 1.1rem;
  font-feature-settings: "tnum";
}

.form-body-inner {
  padding: 2.25rem 2.5rem;
}

@media (max-width: 600px) {
  .form-body-inner {
    padding: 1.5rem 1.25rem;
  }
}

.trust-promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  background: #f8fafc;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.75rem;
  border: 1px solid #e2e8f0;
}

.trust-promise-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #475569;
}

.trust-promise-item svg {
  color: #ca2420;
  flex-shrink: 0;
}

.form-group-nomura {
  margin-bottom: 1.35rem;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.form-label-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: #002b49;
}

.form-badge-req {
  background-color: #ca2420;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

.nomura-input {
  width: 100%;
  height: 50px;
  padding: 0 1rem;
  font-size: 0.95rem;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: var(--transition);
}

.nomura-input:focus {
  outline: none;
  border-color: #ca2420;
  box-shadow: 0 0 0 3px rgba(202, 36, 32, 0.15);
}

.form-input-help {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.35rem;
}

/* LINE Direct Button */
.nomura-line-box {
  margin: 1.5rem 0 1.25rem;
  text-align: center;
}

.nomura-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  height: 54px;
  background-color: #06c755;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.25);
  transition: var(--transition);
}

.nomura-line-btn:hover {
  background-color: #05b04c;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.35);
  transform: translateY(-1px);
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0;
  color: #94a3b8;
  font-size: 0.8rem;
}

.or-divider::before, .or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.or-divider span {
  padding: 0 0.75rem;
}

/* Submit Button */
.nomura-submit-btn {
  width: 100%;
  min-height: 58px;
  padding: 0.85rem 1.5rem;
  background: #ca2420;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(202, 36, 32, 0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.nomura-submit-btn:hover {
  background: #981713;
  box-shadow: 0 6px 20px rgba(202, 36, 32, 0.4);
  transform: translateY(-1px);
}

.nomura-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-sub-note {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn-main-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* Spinner */
.spinner {
  display: none;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.form-message.success {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-compliance-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-top: 1.25rem;
}

/* ==========================================================================
   STATEMENT PANEL (NOMURA WEALTH MANAGEMENT & SOLUTIONS)
   ========================================================================== */

.statement-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #000c1a 0%, #001529 100%);
  border-top: 1px solid #1a293e;
  border-bottom: 1px solid #1a293e;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.statement-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem 2.25rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.statement-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.statement-header-img {
  max-width: 260px;
  height: auto;
  margin-bottom: 1.5rem;
}

.statement-title-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  font-family: var(--font-serif);
}

.statement-desc {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-family: var(--font-serif);
}

.statement-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ca2420;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.statement-link:hover {
  color: #ff4d6d;
  text-decoration: underline;
}

/* ==========================================================================
   FEATURED PRODUCTS & CAMPAIGN CARDS (おすすめサービス)
   ========================================================================== */

.products-section {
  padding: 4rem 0;
  background-color: #f8f8f8;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nomura-red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.section-main-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--nomura-navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 43, 73, 0.12);
  border-color: var(--nomura-red);
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #f0f3f6;
}

.product-card-body {
  padding: 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--nomura-navy);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.product-card-desc {
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
}

/* ==========================================================================
   MARKET NEWS & TIMELINE LIST (新商品・最新情報)
   ========================================================================== */

.news-section {
  padding: 3.5rem 0;
  background-color: var(--bg-gray);
}

.news-tabs-wrap {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.news-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--nomura-navy);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.news-heading-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--nomura-navy);
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.news-item:hover {
  background-color: var(--nomura-red-light);
  padding-left: 0.5rem;
}

.news-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  background-color: var(--border-color);
  color: var(--text-primary);
  flex-shrink: 0;
}

.news-badge.ipo { background-color: #fee2e2; color: #991b1b; }
.news-badge.bond { background-color: #e0f2fe; color: #075985; }
.news-badge.stock { background-color: #fef3c7; color: #92400e; }

.news-date {
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-shrink: 0;
  font-feature-settings: "tnum";
}

.news-title {
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================================
   PARTNER & COMPLIANCE BANNER CAROUSEL (関連サイト・バナー)
   ========================================================================== */

.partner-banners-section {
  padding: 2rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

.partner-banners-section.-top {
  padding: 1.25rem 0;
  background-color: #f8fafc;
  border-top: none;
  border-bottom: 1px solid var(--border-light);
}

.partner-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
  align-items: center;
}

@media (max-width: 767px) {
  .partner-banners-section.-top {
    padding: 0.85rem 0;
  }
  .partner-banner-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
  }
}

.partner-banner-item {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #ffffff;
  transition: var(--transition);
}

.partner-banner-item img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-banner-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-color);
}

/* ==========================================================================
   MEGA FOOTER (野村證券 公式フッター)
   ========================================================================== */

.nomura-footer {
  background-color: var(--nomura-navy-dark);
  color: #cbd5e1;
  padding: 3.5rem 0 2rem;
  font-size: 0.85rem;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
}

.footer-nav-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 3px solid var(--nomura-red);
  padding-left: 0.5rem;
}

.footer-nav-col ul li {
  margin-bottom: 0.5rem;
}

.footer-nav-col ul li a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-nav-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-compliance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.footer-compliance-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-legal-text {
  max-width: 800px;
  line-height: 1.6;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.8;
}

/* ==========================================================================
   AI ASSISTANT CHAT WIDGET (チャットで質問)
   ========================================================================== */

.nomura-chat-widget {
  position: fixed;
  top: 38%;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ca2420;
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 8px 6px 14px;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: var(--transition);
}

.nomura-chat-widget:hover {
  transform: translateX(-4px);
  box-shadow: -6px 6px 20px rgba(200, 16, 46, 0.25);
}

.chat-avatar-mini {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 6px;
}

.chat-tab-vertical-text {
  writing-mode: vertical-rl;
  color: #ca2420;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-tab-vertical-text span:first-child {
  font-size: 0.72rem;
  color: #666666;
  font-weight: 500;
}

/* ==========================================================================
   STICKY FOOTER CTA
   ========================================================================== */

.live-notifications, .notification-toast {
  display: none !important;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nomura-red-light);
  color: var(--nomura-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.toast-content {
  line-height: 1.35;
}

.toast-location {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.toast-name {
  font-weight: 700;
  color: var(--nomura-navy);
}

.toast-amount {
  color: var(--nomura-red);
  font-weight: 600;
  font-size: 0.75rem;
}

.toast-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* Floating Sticky Bottom Bar for Mobile */
.sticky-cta-bar-jp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-light);
  padding: 0.65rem 1rem;
  z-index: 800;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}

.sticky-cta-bar-jp.show {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 500px;
  background-color: var(--nomura-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}
