* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors */
  --primary: #ba1c21;
  --primary-foreground: #FFFFFF;
  
  /* Secondary Colors */
  --secondary: #054F96;
  --secondary-foreground: #FFFFFF;
  
  /* Accent Colors */
  --accent: #C9A961;
  --accent-light: #C9A961;
  
  /* Background Colors */
  --background: oklch(0.99 0 0);
  --muted: oklch(0.92 0 0);
  
  /* Text Colors */
  --foreground: oklch(0.15 0 0);
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --muted-foreground: oklch(0.5 0 0);
  
  /* UI Colors */
  --border: oklch(0.9 0 0);
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Specific Use Colors */
  --heading-blue: #133a55;
  --star-color: #FFD700;
  --ex-color: #FFB300;
  
  /* Layout */
  --radius: 0.5rem;
  
}

body {
  font-family: "Geist", "Geist Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.pc_only{
  display:inithal;
}

.sp_only{
  display:none;
}

.page-wrapper {
  min-height: 100vh;
  background-color: var(--background);
}

/* h2 */
.heading-style-8 {
  font-size: 2rem;
  color: var(--secondary) !important;
  text-align: center;
  margin: 0 auto 3rem;
  padding-bottom: 20px;
  position: relative;
  max-width: 800px;
}

.heading-style-8::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary));
  border-radius: 2px;
}

.heading-style-8-muted {
  color: var(--primary-foreground) !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-foreground);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
}

.logo-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-image {
  width: 200px;
  height: auto;
}

.logo-image-2 {
  width: auto;
  height: 50px;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.phone-info {
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
}

.phone-display {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-icon {
  width: 20px;
  height: 20px;
}

.business-hours {
  font-size: 12px;
  margin-top: 4px;
  color: var(--muted-foreground);
}

/* Hero Section */
/*
.hero {
   background-image: url('../images/mv_bg (3).png');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
}
 */
/* Hero Section */
.hero {
  background: linear-gradient(110deg, var(--secondary) 0%, var(--secondary) 20%, var(--primary-foreground) 80%, var(--ex-color) 100%);
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  padding: 80px 20px 0;
  position: relative;
  overflow: hidden;
  filter: opacity(0.95);
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /*
  align-items: end;
  */
  align-items: center
  padding-bottom: 0;
}

.hero-content {
  color: var(--foreground);
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--primary-foreground);
}

.hero-text {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
  color: var(--primary-foreground);
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.hero-checklist li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-foreground);
}

.hero-checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 50px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: var(--primary-foreground);
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 79, 150, 0.2);
}

.btn-outline .phone-icon {
  width: 18px;
  height: 18px;
}

.hero-note {
  font-size: 14px;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  /*
  align-items: flex-end;
  */
  align-items: center;
  margin-bottom: 0;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

/* Responsive - Hero Section */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 60px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0px;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom:32px
  }

  .btn-large,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    align-items: flex-end;
  }

  .hero-image img {
    max-width: 100%;
    margin-bottom: 0;
  } 
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
  color: var(--foreground);
}

.section-muted {
  background-color: var(--muted);
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-muted > * {
  max-width: 1200px;
  width: 100%;
}

.section-highlight {
  background-color: var(--secondary);
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-highlight > * {
  max-width: 1200px;
  width: 100%;
}

/* Factoring Section */
.factoring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.factoring-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--foreground);
}

.factoring-text p {
  margin-bottom: 16px;
}

.factoring-image {
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--primary-foreground);
  font-size: 60px;
}

.factoring-icon {
  width: auto;
  max-height: 250px;
}

/* Responsive */
@media (max-width: 768px) {
.factoring-icon {
  width: auto;
  max-height: 200px;
}
}

/* Card */
.card {
  background: var(--primary-foreground);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 14px;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(5, 79, 150, 0.15);
}

.card-icon-large {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

/* Grid Layouts */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.industries-grid .card {
  padding: 16px;
  background: var(--primary-foreground);
  font-weight: 500;
  color: var(--foreground);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted-foreground);
  font-size: 14px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
}

/* Use Cases Section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.use-case-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.use-case-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-foreground);
}

/* Fee Examples Section */
.fee-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.fee-card {
  position: relative;
}

.fee-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(5, 79, 150, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.fee-type {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--foreground);
}

.fee-rate {
  font-size: 34px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.fee-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.fee-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.fee-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.fee-example-text {
  background: var(--muted);
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.fee-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted-foreground);
  font-size: 14px;
}

/* Comparison Table Section */
.comparison-container {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--primary-foreground);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table thead {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: var(--muted);
}

.comparison-table .highlight-col {
  background: rgba(5, 79, 150, 0.05);
  font-weight: 600;
}

.comparison-table thead .highlight-col {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:26px;
  font-weight:bold;
  color: var(--text-dark);
  background-color: var(--primary-foreground);
  border: 3px solid var(--primary);
}

.comparison-table tbody .highlight-col{
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}

.highlight-col-b{
  border-bottom: 3px solid var(--primary) !important;
}

.text-center{
  text-align: center !important;
}

.lg-text-first{
  color: var(--heading-blue);
}

.lg-text-second{
  text-indent: 0.5em;
  color: var(--ex-color);
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-table th{
    font-size:13px;
  }
  .comparison-table thead .highlight-col {
    font-size:13px;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
  }
  .lg-text-second{
    text-indent: initial;
  }
}

/* Media Section */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.media-item {
  background: var(--primary-foreground);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  font-weight: 600;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

/* Company Info Section */
.company-info-container {
  max-width: 900px;
  margin: 0 auto;
}

.company-info-table {
  width: 100%;
  background: var(--primary-foreground);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.company-info-table tr {
  border-bottom: 1px solid var(--border);
}

.company-info-table tr:last-child {
  border-bottom: none;
}

.company-info-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 600;
  width: 200px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.company-info-table td {
  padding: 16px 24px;
  line-height: 1.8;
  border-bottom: 1px solid var(--border);
}

.bbnone{
  border-bottom: none !important;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background-image: url('../images/mv_bg (2).png');
  background-size: cover;
  color: var(--primary-foreground);
  text-align: center;
}

.cta-alternate {
  background-image: url('../images/mv_bg (2).png');
  background-size: cover;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-foreground);
}

.cta-container p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-phone {
  background-color: var(--primary-foreground);
  color: var(--text-dark);
}

.btn-phone:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-form {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
}

.btn-form:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-phone-large {
  background-color: var(--primary-foreground);
  color: var(--text-dark);
  font-size: 20px;
  padding: 20px 40px;
}

.btn-phone-large:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.cta-hours {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.9;
}

/* Accordion - CSSのみで実装 */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--primary-foreground);
}

.accordion-item summary {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--foreground);
  transition: background 0.3s ease;
  user-select: none;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary:hover {
  background: var(--muted);
}

.accordion-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  font-weight: 400;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 16px;
  background: var(--primary-foreground);
  color: var(--foreground);
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-stars {
  margin-bottom: 16px;
  color: var(--star-color);
  font-size: 20px;
}

.testimonial-meta {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 16px;
}

.testimonial-meta p {
  margin-bottom: 4px;
}

/* Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-wrapper {
  background: var(--primary-foreground);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--foreground);
}

.required {
  color: var(--error);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 6px;
}

.amount-input {
  display: flex;
  align-items: center;
  gap: 8px;
}

.amount-input input {
  flex: 1;
}

.amount-unit {
  font-weight: 600;
  color: var(--foreground);
  min-width: 40px;
}

.form-checkbox {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.form-checkbox label {
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.privacy-link {
  color: var(--secondary);
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Button */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(5, 79, 150, 0.2);
}

.btn-white {
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 14px 40px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 60px 20px 20px;
  margin-top: 0px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-section ul {
  font-size: 14px;
  line-height: 2;
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: var(--secondary-foreground);
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 12px;
  font-size: 24px;
}

.social-links a {
  color: var(--secondary-foreground);
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .pc_only{
    display:none;
  }
  .sp_only{
    display:block;
  }
  .header-container {
    flex-direction: row;
    gap: 12px;
  }

  .header-right {
    flex-direction: column;
    width: 100%;
    align-items: flex-end;
  }

  .hero {
    margin-top: 85px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .section {
    padding: 60px 20px;
  }

  .factoring-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .company-info-table th {
    width: 120px;
    font-size: 14px;
  }

  .company-info-table td {
    font-size: 14px;
  }
  .cta-container h2 {
    font-size: 30px;
  }
}

/* デザイン案2: カードグリッドスタイル */
.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-card {
  background: var(--primary-foreground);
  border-radius: 16px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary));
}

.card-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-foreground);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(5, 79, 150, 0.3);
}

.process-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.process-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/*---------------------------------------------*
* contact 
*----------------------------------------------*/
section.contact {
  background-color: var(--muted);
}

section.contact .wrap {
  padding: 80px 0 40px 0;
}

section.contact h2.subtitle {
  color: var(--secondary);
  padding-bottom: 1em;
  position: relative;
  margin-bottom: 1em;
  font-size: 40px;
  text-align: center;
}

section.contact h2.subtitle:before {
  display: none;
}

section.contact h2.subtitle:after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: inherit;
  bottom: 0.25em;
}

section.contact p.contact_read {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-dark);
  font-weight: bold;
  margin-bottom: 24px;
}

section.contact p.sixtymin {
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  color: var(--text-dark);
  padding-bottom: 32px;
}

.contact form dl {
  width: 60%;
  display: block;
  margin: 0 auto 48px auto;
  padding: 32px;
  box-sizing: border-box;
}

.contact form dl dt,
.contact form dl dd {
  clear: both;
  padding: 0 0 4px 0;
  width: 100%;
  font-weight: bold;
  color: var(--text-dark);
}

.contact form dl dt {
  font-size: 18px;
  line-height: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
}

.contact form dl dt i {
  font-size: 13px;
  margin-right: 8px;
  font-weight: bold;
  color: var(--primary-foreground);
  background-color: var(--primary);
  padding: 2px 8px;
  min-width: 40px;
  text-align: center;
  font-style: normal;
}

.contact form dl dt i.gray {
  background-color: var(--muted-foreground);
  color: var(--primary-foreground);
}

.contact form dl dd {
  font-size: 16px;
  margin-bottom: 20px;
}

.contact form dl dt span {
  font-weight: normal;
  margin-left: 16px;
  font-size: 14px;
}

.contact form dl dd input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
}

.contact form dl dd input.short {
  width: 40%;
  margin-right: 8px;
}

.contact form dl dd textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 120px;
  box-sizing: border-box;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 4px;
  font-family: inherit;
}

.contact form dl dd:nth-last-of-type(1) {
  padding-top: 16px;
  text-align: center;
}

.contact form dl dd:nth-last-of-type(1) p {
  margin: 16px 0 0 0;
}

.contact form dl dd:nth-last-of-type(1) p a {
  color: var(--text-dark);
}

.contact form dl dd:nth-last-of-type(1) p a:hover {
  text-decoration: underline;
}

.contact form dl dd div.policy {
  color: var(--text-dark);
  background-color: var(--primary-foreground);
  padding: 24px 16px;
  box-sizing: border-box;
  width: 100%;
  max-height: 360px;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
  overflow-y: auto;
  border-radius: 4px;
}

.contact form dl dd div.policy p {
  margin: 0 0 12px 0;
}

.contact form dl dd div.policy p.indb {
  margin: 0;
  font-weight: bold;
  font-size: 15px;
}

.contact form dl dd div.policy p.indb:nth-child(n+2) {
  margin: 24px 0 8px 0;
}

.contact form dl dd p.policychk {
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
}

.contact form dl dd button[type=submit] {
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 18px;
  border: none;
  width: 100%;
  max-width: 350px;
  padding: 16px 0;
  display: block;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact form dl dd button[type=submit]:after {
  content: "▶";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.contact form dl dd button[type=submit]:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  section.contact .wrap {
    padding: 60px 20px 40px 20px;
  }
  
  section.contact h2.subtitle {
    font-size: 40px;
  }
  
  section.contact p.contact_read {
    font-size: 16px;
  }
  
  section.contact p.sixtymin {
    font-size: 20px;
  }
  
  .contact form dl {
    width: 100%;
    padding: 16px 0;
  }
  
  .contact form dl dt {
    font-size: 16px;
  }
  
  .contact form dl dt i {
    font-size: 12px;
  }
  
  .contact form dl dt span {
    font-size: 13px;
    margin-left: 8px;
  }
  
  .contact form dl dd {
    font-size: 14px;
  }
  
  .contact form dl dd input,
  .contact form dl dd textarea {
    font-size: 16px;
  }
  
  .contact form dl dd button[type="submit"] {
    font-size: 16px;
    width: 100%;
  }
}

/*---------------------------------------------*
* Thanks Page
*----------------------------------------------*/
.thanks {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--background);
}

.thanks > div {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: var(--primary-foreground);
  padding: 60px 40px;
  /* border-radius: var(--radius); */
  /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); */
}

.thanks h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.thanks h2 span {
  display: inline-block;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--primary);
}

.thanks h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 32px;
}

.thanks p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

.thanks p:last-child {
  margin-top: 40px;
  margin-bottom: 0;
}

.thanks a {
  display: inline-block;
  padding: 14px 48px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
  /* border-radius: var(--radius); */
  font-weight: 600;
  transition: all 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
  .thanks {
    padding: 60px 20px;
  }
  
  .thanks > div {
    padding: 40px 24px;
  }
  
  .thanks h2 {
    font-size: 24px;
  }
  
  .thanks h3 {
    font-size: 18px;
  }
  
  .thanks p {
    font-size: 14px;
  }
}