/* Flow: フル幅カード内の補助リンクを内容幅に揃えて右寄せ */
.flow-summary .flow-more{
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
}
.slider .slide {
  height: 100%;
}
.slider .slide-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 700px;
  width: 100%;
  height: auto;
  min-height: 320px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
.slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
.slider .slide.active,
.slider .slide.fade-in {
  opacity: 1 !important;
  z-index: 2;
}
.slider .slide.fade-out {
  opacity: 0 !important;
  z-index: 1;
}
/* ヒーロースライダーのスライドを常に中央揃え・絶対配置・flexで統一 */
.slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
/* ヒーロースライダーのフェードイン/アウトアニメーション */
.slider .slide.fade-in {
  opacity: 1 !important;
  transition: opacity 0.5s;
  z-index: 2;
}
.slider .slide.fade-out {
  opacity: 0 !important;
  transition: opacity 0.5s;
  z-index: 2;
}
/* ヒーロースライダーの動画・画像を背景レイヤー化 */
.slider .slide picture,
.slider .slide img,
.slider .slide .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.slider .slide-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 700px;
}
/* === Global container system ============================================= */
:root {
  --container-max: 1200px;
  --container-padding-x: 1rem;
  --h1-size: 3rem;
  --h2-size: 2.2rem;
  --h3-size: 1.6rem;
}

/* Container utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  box-sizing: border-box;
}
.max-1000 { --container-max: 1000px; }
.max-1200 { --container-max: 1200px; }
.max-1400 { --container-max: 1400px; }
.fluid { --container-max: 100vw; }

/* === Utilities: text and spacing ======================================== */
.muted { color: #666 !important; }
.is-hidden { display: none !important; }

/* Spacing (margin-top) utilities used to migrate inline styles */
.mt-05 { margin-top: 0.5rem !important; }
.mt-06 { margin-top: 0.6rem !important; }
.mt-10 { margin-top: 1rem !important; }
.mt-12 { margin-top: 1.2rem !important; }
.mt-15 { margin-top: 1.5rem !important; }
.mt-16 { margin-top: 1.6rem !important; }
.mt-18 { margin-top: 1.8rem !important; }

/* Typography helpers */
.text-sm { font-size: 0.95rem !important; }
.text-secondary { color: #333 !important; }

/* Section layout */
main > section:not(.hero-slider) {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
main > section:not(.hero-slider):not(.section--full):not(.full-width) {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  box-sizing: border-box;
}
.section--full, .full-width {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* === Card style (site-wide) =============================================
   参照画像寄りの落ち着いたカード表現（白地＋薄い枠＋ソフト影）に統一
*/
.highlight-card,
.benefit-card,
.testimonial-card,
.contact-card,
.info-card {
  background: #fff;
  border: 1px solid #e6eef7; /* very light blue-gray */
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(10,95,165,0.06);
  padding: 2.2rem 1.8rem;
  margin-bottom: 2.2rem;
  font-size: 1.06rem;
  line-height: 1.75;
}

/* content-card: slightly tighter, readable card for intro/feature blocks under hero */
.content-card {
  background: #fff;
  border: 1px solid #e9f1fb;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 6px 20px rgba(10,95,165,0.04);
}
.content-card h3 { color: #003a66; margin-top: 0; margin-bottom: 0.6rem; font-size: 1.25rem; }
.content-card p.lead { font-size: 1.02rem; color: #334; margin-bottom: 1rem; }
.content-card ul { margin-left: 1.05rem; line-height: 1.7; }
.content-card li { margin-bottom: 0.5rem; }

/* Make sure hero stays visually separate from first content-card */
.hero + .content-card { margin-top: 1rem; }


/* 微差のバリエーションが必要な場合はここに個別上書きを追加 */

/* リンクの色味も落ち着いた青に調整 */
a.custom-link { color:#0a5fa5; text-decoration:none; border-bottom:2px solid rgba(10,95,165,0.18); padding-bottom:2px; transition:color .18s, border-color .18s }
a.custom-link:hover { color:#084a82; border-bottom-color: rgba(8,74,130,0.28) }

/* Inline-to-CSS migrated helpers */
.flow-arrow { font-size: 2.2rem; color: #90caf9; vertical-align: middle; display: inline-block; margin: 0 0.5rem; }
.flow-more { text-align: right; }
.highlight-company { text-align: right; font-size: 0.95em; }
.form-error { margin-bottom: 0.5rem; color: #b00020; }

/* Hero slider and text box */
.hero-slider {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  box-sizing: border-box;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  z-index: 1;
}
.slider .slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.slide-inner {
  background: rgba(62, 151, 224, 0.82);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,64,128,0.12);
  padding: 2.5rem 2rem;
  color: #173a62;
  max-width: 700px;
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slide-inner h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #173a62;
  margin-bottom: 1.2rem;
  text-shadow: none;
}
.slide-inner p.hero-subtitle {
  font-size: 1.25rem;
  color: #004080;
  margin-bottom: 2rem;
}
.hero-buttons .btn,
.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
  font-size: 1.15rem;
  padding: 0.9rem 2.2rem;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(0,64,128,0.10);
  font-weight: 600;
}

/* === Simple Hero Section (image + blue overlay) ======================== */
.hero-section {
  position: relative;
  width: 100vw;
  height: 300px;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}
.hero-image { position: relative; width: 100%; height: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 64, 128, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) { .hero-section { height: 200px; } }

/* Utility: full-bleed flow summary */
.flow-summary.full-bleed {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 24px rgba(3,37,76,0.06);
  margin-top: 1.2rem;
  z-index: 1;
}

/* Match hero h1 color for the immediate page-intro h2 under a hero image
   This selector is intentionally specific to avoid overriding global section h2 rules */
.hero-section.service-hero + section .hero h2,
.hero-section.service-hero + .service-content .hero h2 {
  color: #fff; /* same as .hero-overlay h1 */
}

.flow-summary.full-bleed .flow-steps {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}
.flow-summary.full-bleed .flow-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem 0;
  position: relative;
}
.flow-summary.full-bleed .step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#004080,#0066cc);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(0,64,128,0.12);
  margin-bottom: 0.6rem;
}
.flow-summary.full-bleed .step-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #173a62;
}
.flow-summary.full-bleed .flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg,#e6f0fd,transparent);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
}

/* --- Spacing utilities (small set) ------------------------------------ */
/* Margin bottom */
.mb-025 { margin-bottom: 0.25rem !important; }
.mb-05  { margin-bottom: 0.5rem !important; }
.mb-1   { margin-bottom: 1rem !important; }
.mb-15  { margin-bottom: 1.5rem !important; }
.mb-2   { margin-bottom: 2rem !important; }

/* Margin top */
.mt-025 { margin-top: 0.25rem !important; }
.mt-05  { margin-top: 0.5rem !important; }
.mt-1   { margin-top: 1rem !important; }
.mt-15  { margin-top: 1.5rem !important; }
.mt-2   { margin-top: 2rem !important; }

/* Margin left / right / horizontal */
.ml-05 { margin-left: 0.5rem !important; }
.ml-08 { margin-left: 0.8rem !important; }
.ml-1  { margin-left: 1rem !important; }
.mr-05 { margin-right: 0.5rem !important; }
.mr-08 { margin-right: 0.8rem !important; }
.mr-1  { margin-right: 1rem !important; }
.mx-05 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-08 { margin-left: 0.8rem !important; margin-right: 0.8rem !important; }
.mx-1  { margin-left: 1rem !important; margin-right: 1rem !important; }

/* Padding helpers */
.p-05 { padding: 0.5rem !important; }
.p-1  { padding: 1rem !important; }
.p-2  { padding: 2rem !important; }

/* Small utility display */
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .mx-08 { margin-left: 0.6rem !important; margin-right: 0.6rem !important; }
  .ml-08 { margin-left: 0.6rem !important; }
  .mr-08 { margin-right: 0.6rem !important; }
}


/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  background: linear-gradient(135deg,#fff,#f8f9fa);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.process-step:hover {
  transform: translateY(-3px);
}
/* Flow step rows: card + comment layout */
.step-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.2rem;
  align-items: start;
}

.step-card {
  background: #fff;
  border: 1px solid #e6eef7;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 8px 24px rgba(10,95,165,0.04);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,#004080,#0066cc);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.comment-box {
  background: #fbfdff;
  border: 1px dashed #dfeffb;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #333;
}


.editable-list { margin: 0; padding-left: 1rem; }

@media (max-width: 900px) {
  .step-row { grid-template-columns: 1fr; }
  .comment-box { order: 2; }
  .step-card { order: 1; }
}
*** End Patch

/* FAQ */
.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: transparent;
}
.faq-question:hover {
  background: linear-gradient(135deg,#e3f2fd,#bbdefb);
}
.faq-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}
.faq-question span:first-of-type {
  font-weight: 600;
  color: #004080;
  flex: 1;
  font-size: 1.1rem;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #004080;
  font-weight: bold;
  transition: transform 0.3s;
  margin-left: 1rem;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  margin: 0;
  padding: 1.5rem;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Link decoration */
a.custom-link {
  color: #6b2fa8;
  text-decoration: none;
  border-bottom: 2px solid rgba(107,47,168,0.15);
  padding-bottom: 2px;
  transition: color 0.18s, border-color 0.18s;
}
a.custom-link:hover {
  color: #3c0660;
  border-bottom-color: rgba(60,6,96,0.25);
}

/* Contact & forms */
.contact-content h2 {
  font-size: 2.2rem;
  color: #004080;
  text-align: center;
  margin-bottom: 2rem;
}
.contact-content h3 {
  font-size: 1.5rem;
  color: #004080;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #cce7ff;
  padding-bottom: 0.5rem;
}
.contact-options {
  margin-bottom: 3rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-card {
  background: linear-gradient(135deg,#f8f9fa,#e3f2fd);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
}
.contact-icon {
.card-body-noborder {
  padding: 2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: 0.6rem;
  line-height: 1.7;
  color: inherit;
}

.card-body-noborder p { margin: 0 0 0.9rem 0; }
.card-body-noborder ul { margin: 0 0 1rem 1.2rem; }
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-card h3 {
  color: #004080;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}
.contact-card p {
  color: #555;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}
.contact-form {
  max-width: 100%;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #004080;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  font-family: 'Noto Sans JP', Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #004080;
  box-shadow: 0 0 5px rgba(0,64,128,0.3);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 2px solid #e3f2fd;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,#888 50%),linear-gradient(135deg,#888 50%,transparent 50%);
  background-position: calc(100% - 18px) calc(1rem + 2px),calc(100% - 13px) calc(1rem + 2px);
  background-size: 6px 6px,6px 6px;
  background-repeat: no-repeat;
}
.form-select:focus {
  outline: none;
  border-color: #004080;
  box-shadow: 0 0 5px rgba(0,64,128,0.2);
}
.form-group.select-group {
  margin-bottom: 1.75rem;
}
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: #333;
}
.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #004080;
}
.submit-btn {
  background: linear-gradient(135deg,#004080,#0066cc);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s,box-shadow 0.3s;
  width: 100%;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,64,128,0.4);
}

/* Info cards */
.contact-info {
  margin-bottom: 2rem;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-card {
  background: linear-gradient(135deg,#fff,#f8f9fa);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  border-left: 4px solid #004080;
}
.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.info-card h4 {
  color: #004080;
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}
.info-card p {
  color: #555;
  margin: 0.5rem 0;
  line-height: 1.6;
}
.info-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Embedded maps */
iframe[loading][referrerpolicy] { border: 0; }

/* Notes / callouts */
.note-highlight { background: #fff9e6; border: 1px solid #ffd54f; padding: 1rem; border-radius: 8px; }
.note-list { margin: 0.5rem 0 0 1.1rem; line-height: 1.7; }
.note-success { background: #f4fff7; border-left: 4px solid #2e7d32; padding: 1rem; border-radius: 8px; }
.note-warning { color: #b22222; }
.note-warning-title { color: #b22222; margin: 0; font-weight: 600; }
.note-warning-list { margin: 0.5rem 0 0 1.2rem; color: #b22222; }

/* small spacing helpers */
.mb-15 { margin-bottom: 1.5rem !important; }
.mt-20 { margin-top: 2rem !important; }
.mt-00 { margin-top: 0 !important; }

/* Alternate ghost button (white background used in a few places) */
.alt-ghost { background: #fff; color: #003366; margin-left: 0.75rem; border: 1px solid rgba(0,0,0,0.04); }

/* Image helpers used on debug page */
.img-h48 { height: 48px; }
.obj-h64 { height: 64px; width: auto; display: block; }

/* Planning / Pricing */
.plan-selection {
  margin-bottom: 4rem;
  background: linear-gradient(135deg,#f8f9fa,#e3f2fd);
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.plan-selection h3 {
  text-align: center;
  color: #004080;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
}
.selection-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.selection-option {
  flex: 1;
  max-width: 400px;
}
.selection-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s,box-shadow 0.3s;
  border: 2px solid transparent;
  height: 100%;
}
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.selection-card h4 {
  color: #004080;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.selection-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.selection-button {
  display: inline-block;
  background: linear-gradient(135deg,#004080,#0066cc);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s,box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,64,128,0.3);
  border: 2px solid #004080;
}
.selection-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,64,128,0.4);
  background: linear-gradient(135deg,#003366,#0055aa);
}
.selection-button.primary {
  background: linear-gradient(135deg,#ff6b35,#f7931e);
  border-color: #ff6b35;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}
.selection-button.primary:hover {
  background: linear-gradient(135deg,#e55a2b,#e6821a);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}
.vs-divider {
  flex-shrink: 0;
  text-align: center;
  padding: 0 1rem;
}
.vs-divider span {
  background: linear-gradient(135deg,#004080,#0066cc);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,64,128,0.3);
  display: inline-block;
}

/* Gininkoku / appeal */
.ginin-appeal {
  background: linear-gradient(135deg,#fff3cd,#ffeaa7);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid #ffc107;
}
.ginin-appeal h4 {
  color: #856404;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.ginin-appeal p {
  margin: 0.5rem 0;
  color: #856404;
  line-height: 1.6;
}

/* Section spacer */
.section-spacer {
  height: 4rem;
  margin: 2rem 0;
}

/* Global heading scale */
h1 { font-size: var(--h1-size); line-height: 1.12; }
h2 { font-size: var(--h2-size); line-height: 1.18; }
h3 { font-size: var(--h3-size); line-height: 1.3; }
.hero h1 { font-size: calc(var(--h1-size) + 0.2rem); }
main h2,
.service-content h2,
.flow-content h2,
.pricing-content h2,
.achievements-content h2,
.faq-content h2,
.contact-content h2,
.privacy-content h2 { font-size: var(--h2-size); }
section h3,
.service-content h3,
.flow h3,
.pricing h3,
.testimonials h3,
.info-card h3,
.campaign-header h3,
.cta-card h3 { font-size: var(--h3-size); }

/* === Responsive Tweaks ================================================== */
@media (max-width: 900px) {
  .flow-summary.full-bleed { padding: 1rem; }
  .flow-summary.full-bleed .flow-steps { flex-wrap: wrap; }
  .flow-summary.full-bleed .flow-step { min-width: 120px; }
  .flow-summary.full-bleed .flow-step:not(:last-child)::after { display: none; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --h1-size: 2.2rem; --h2-size: 1.8rem; --h3-size: 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { gap: 1rem; }
  .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; margin: 0 0.25rem; }
  .faq-question { padding: 1rem; flex-wrap: wrap; }
  .faq-question span:first-of-type { font-size: 1rem; }
  .faq-icon { font-size: 1.2rem; margin-right: 0.5rem; }
  .faq-answer p { padding: 1rem; font-size: 0.95rem; }
  .flow, .pricing, .testimonials { padding-left: 1rem; padding-right: 1rem; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .service-content h2,
  .flow-content h2,
  .pricing-content h2,
  .for-companies-content h2,
  .achievements-content h2,
  .faq-content h2,
  .contact-content h2,
  .privacy-content h2 { font-size: 1.8rem; }
  .service-content h3,
  .for-companies-content h3,
  .achievements-content h3,
  .contact-content h3,
  .privacy-content h3 { font-size: 1.3rem; }
}

/* === CTA Section (Call-to-Action) ====================================
   最下部の問い合わせ誘導カード：オレンジ系グラデで目立つデザイン
*/
.cta-section {
  padding: 0;
  margin: 0;
}

.cta-banner {
  max-width: var(--container-max);
  margin: 3.5rem auto 2.5rem auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: linear-gradient(90deg, #0a5fa5 0%, #2a83c7 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(10,95,165,0.18);
}
.cta-banner::before,
.cta-banner::after{
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.06) 60%, transparent 70%);
  pointer-events: none;
}
.cta-banner::before{ left: -120px; bottom: -80px; }
.cta-banner::after{ right: -120px; top: -80px; }

.cta-banner h3{ font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 0 0 0.6rem 0; font-weight: 800; }
.cta-banner p{ margin: 0 0 1.2rem 0; opacity: 0.98; }

.cta-actions{ display:flex; gap:1rem; flex-wrap:wrap; align-items:center; justify-content:center; }
.cta-actions .cta-primary,
.cta-actions .cta-secondary{ display:inline-block; padding: 0.9rem 2rem; border-radius: 28px; font-weight:700; }
.cta-actions .cta-primary{
  background: linear-gradient(135deg,#f27a23,#e16812);
  color:#fff; border:0; box-shadow: 0 4px 16px rgba(226,104,18,0.35);
}
.cta-actions .cta-primary:hover{ transform: translateY(-1px); box-shadow: 0 8px 24px rgba(226,104,18,0.45); }
.cta-actions .cta-secondary{
  background: transparent; color:#fff; border:1.6px solid rgba(255,255,255,0.9);
}
.cta-actions .cta-secondary:hover{ background: rgba(255,255,255,0.08); }

.cta-card-common {
  background: linear-gradient(135deg, #ffe0b2 60%, #ffcc80 100%);
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(255, 152, 0, 0.15);
  border: 2px solid #ffb74d;
  padding: 3rem 2.5rem;
  margin: 3.5rem auto 2.5rem auto;
  max-width: 700px;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #004080, #0066cc);
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.9rem 2.2rem;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(0, 64, 128, 0.10);
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 64, 128, 0.25);
  color: #fff;
}
