:root {
  /* Luxury Brand Colors */
  --primary-color: #1a2d5a;
  /* Deep Navy */
  --primary-hover: #142247;
  --accent-gold: #c9a84c;
  /* Warm Gold */
  --accent-gold-light: #e8d5a0;
  --bg-color: #faf8f4;
  /* Warm Ivory */
  --bg-section: #f4f0ea;
  /* Warm Cream section */
  --text-main: #1a1a2e;
  /* Deep Charcoal */
  --text-muted: #5a5a72;
  --surface: #ffffff;
  --success: #2b7a4c;
  --border-color: #e0d9cc;
  /* Warm light border */

  /* Compatibility with Mini Apps */
  --app-accent: var(--accent-gold);

  /* Typography */
  --font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Noto Serif JP', 'Georgia', serif;
  --font-size-base: 16px;

  /* Layout */
  --max-width: 1200px;

  /* Animations & Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 1px 3px 0 rgb(26 45 90 / 0.06);
  --shadow-md: 0 4px 12px -2px rgb(26 45 90 / 0.1), 0 2px 6px -2px rgb(26 45 90 / 0.06);
  --shadow-lg: 0 12px 28px -4px rgb(26 45 90 / 0.14), 0 4px 10px -4px rgb(26 45 90 / 0.08);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-hover);
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  font-family: var(--font-family);
}

/* Gold Accent Dividers under h2 */
.section h2::after,
.section-light h2::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  margin: 1rem auto 0;
  border-radius: 9999px;
}

/* Layout Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--surface);
}

.section-cream {
  background-color: var(--bg-section);
}

.section-dark {
  background-color: var(--text-main);
  color: #fff;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.font-bold {
  font-weight: 700;
}

.text-primary {
  color: var(--primary-color);
}

.text-muted {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8943f 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgb(201 168 76 / 0.35);
  letter-spacing: 0.02em;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(201 168 76 / 0.45);
  color: #fff;
}

.btn-line {
  background-color: #06c755;
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-line:hover {
  background-color: #05b34c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-line {
  background-color: #06c755;
  /* LINE Official Color */
  color: #fff;
  box-shadow: var(--shadow-md);
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-line:hover {
  background-color: #05b34c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #030712;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.0);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(3, 7, 18, 0.35) 0%,
      rgba(3, 7, 18, 0.55) 60%,
      rgba(3, 7, 18, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #06c755;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

/* Hero Feature styles moved to index.html internal <style> for reliability */

.hero-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Blend the icon's white onto the white circle */
}



/* Features/Services Section */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.card {
  background-color: var(--surface);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 20px 40px -10px rgba(26, 45, 90, 0.2);
  border-color: var(--accent-gold-light);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  /* Pure white foundation */
  border-radius: 0.75rem;
  /* Removed border/shadow that might look "messy" if mismatched */
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Blend white image background into white card */
  filter: contrast(1.05);
  /* Slightly punch up the details */
}

/* Mockups Section */
.mockup-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal);
}

.mockup-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mockup-image-wrapper {
  width: 100%;
  padding-top: 75%;
  /* 4:3 aspect ratio */
  position: relative;
  overflow: hidden;
  background-color: #f1f5f9;
}

.mockup-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 3s ease;
}

.mockup-card:hover .mockup-image {
  transform: scale(1.05);
}

.mockup-content {
  padding: 1.5rem;
}

.mockup-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.mockup-tags {
  display: flex;
  gap: 0.5rem;
}

.mockup-tag {
  background-color: #f1f5f9;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '一番人気';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* Options Table */
.options-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.options-table th,
.options-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.options-table th {
  background-color: #f8fafc;
  font-weight: 600;
}

.options-table tr:last-child td {
  border-bottom: none;
}

/* Process Card - Light variant (for cream background) */
.process-card-light {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border-width: 1px;
  border-style: solid;
}

.process-card-light:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.process-card-light .process-card-num {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold) !important;
  background: rgba(201, 168, 76, 0.1);
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
}


.process-card-title-dark {
  color: #1a1a2e;
  font-size: 1.05rem;
}

.process-card-desc-dark {
  color: #3d3d55;
}

/* Ensure light card text is always visible - override dark defaults */
.process-card-light .process-card-title,
.process-card-light h3.process-card-title {
  color: #1a1a2e !important;
}

.process-card-light .process-card-desc,
.process-card-light p.process-card-desc {
  color: #3d3d55 !important;
}

.process-card-light .process-card-num {
  color: #8a6d28 !important;
}


/* Process Disclaimer Footnote */
.process-disclaimer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  padding: 1rem 1.5rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid var(--accent-gold-light);
  border-radius: 0.75rem;
}

/* Availability Schedule Table */
.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
}

.schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.schedule-table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.schedule-table td {
  text-align: center;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.35rem;
  font-weight: 700;
}

.schedule-table td span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

.schedule-label {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-muted);
  background: #faf8f4;
  vertical-align: middle;
}

.status-ok {
  color: #2b7a4c;
  background: #f0fdf6;
}

.status-warn {
  color: #92681a;
  background: #fefce8;
}

.status-ng {
  color: #9f1239;
  background: #fff1f2;
}

.schedule-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
}

.status-ok-badge {
  color: #2b7a4c;
  background: #f0fdf6;
  border: 1px solid #bbf7d0;
}

.status-warn-badge {
  color: #92681a;
  background: #fefce8;
  border: 1px solid #fde68a;
}

.status-ng-badge {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}



/* Process Section - Rich Card Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  position: relative;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.process-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3.5rem 2rem 2.5rem;
  /* Increased top padding for the number */
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  z-index: 1;
}

.process-card::after {
  content: attr(data-step);
  position: absolute;
  background: #ffffff;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-4px);
}

.process-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  display: inline-block;
  background: rgba(201, 168, 76, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

/* Removed .process-card-icon styles */

.process-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  /* default: dark background */
  margin-bottom: 0.75rem;
}

.process-card-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  /* default: dark background */
  line-height: 1.7;
  margin: 0;
}

/* Override for light (cream) background cards */
.process-card-light .process-card-title {
  color: #1a1a2e;
}

.process-card-light .process-card-desc {
  color: #3d3d55;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.faq-q {
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.faq-q::before {
  content: 'Q.';
  color: var(--primary-color);
}

.faq-a {
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
}

.faq-a::before {
  content: 'A.';
  color: var(--success);
  font-weight: 700;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: #fff;
  border-radius: 1.5rem;
  margin: 4rem auto;
  max-width: var(--max-width);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Footer - Rich Multi-Column Grid */
.footer {
  background-color: #030712;
  color: #fff;
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #06c755;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-line-btn:hover {
  background: #05b34c;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
}

.footer-address strong {
  color: #fff;
}

.footer-address a {
  color: var(--accent-gold);
}

.footer-address a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin: 0;
}

/* Responsive Design */
/* Premium News Information Bar */
.news-ticker {
  background-color: #fff;
  border-bottom: 1px solid rgba(26, 45, 90, 0.08);
  padding: 6rem 0;
  /* Significantly increased for a very relaxed feel */
  position: relative;
  z-index: 10;
}

.news-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* Centering the content horizontally */
  gap: 3.5rem;
  /* Increased gap for better balance */
}

.news-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a3d6a 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 1.25rem;
  /* Slightly more padding */
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(26, 45, 90, 0.15);
  margin-top: 2px;
}

.news-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.news-list-wrap {
  /* flex: 1; REMOVED to allow centering the group */
  overflow: hidden;
  position: relative;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* Slightly increased gap between rows */
}

.news-item {
  display: flex;
  align-items: flex-start;
  /* Better for wrapping text */
  gap: 1rem;
  /* Removed white-space: nowrap to allow wrapping on mobile */
  font-size: 0.925rem;
  color: var(--text-main);
  text-decoration: none;
  transition: all var(--transition-fast);
  line-height: 1.5;
}

.news-date {
  font-family: var(--font-family);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.news-title {
  color: var(--text-main);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.news-item:hover .news-title {
  color: var(--primary-color);
  border-bottom-color: var(--accent-gold);
}

.news-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.news-more:hover {
  opacity: 1;
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Hero styles moved to index.html internal <style> */

  .pricing-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }

  /* News Block Mobile Redesign */
  .news-ticker {
    padding: 3rem 0;
    /* Slightly less than desktop but still spacious */
  }

  .news-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .news-list {
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .news-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .news-date {
    font-size: 0.8rem;
  }

  .news-title {
    font-size: 0.875rem;
    white-space: normal;
    /* Force wrap */
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hero styles moved to index.html internal <style> */

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .icon-img-inline {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
  }
}

/* --- Mini-App Promotion Styles --- */
.mini-apps-promo {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mini-apps-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promo-highlight-box {
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.promo-highlight-box h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.promo-highlight-box p {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.8;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.promo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promo-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.promo-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff !important;
    font-family: 'Noto Serif JP', serif;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
}

.promo-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-gold);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.promo-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-info-card .label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.pricing-info-card .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
}

.pricing-info-card .price span {
    font-size: 1rem;
    margin-left: 0.25rem;
}

.pricing-info-card .note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.promo-cta-box {
    margin-top: 5rem;
    text-align: center;
}

.btn-promo-demo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8943f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-promo-demo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .mini-apps-promo {
        padding: 5rem 0;
    }
    .promo-highlight-box {
        padding: 2rem;
    }
    .promo-highlight-box h3 {
        font-size: 1.5rem;
    }
    .promo-grid, .promo-pricing-grid {
        grid-template-columns: 1fr;
    }
    .promo-card {
        padding: 2rem;
    }
}