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

html {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #111827;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.5;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F7F9FC;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  transform: scale(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247, 249, 252, 0.85);
}

/* Decorative elements */
.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle-1 {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(27, 59, 111, 0.06);
}

.hero-circle-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(27, 59, 111, 0.04);
}

/* Top navigation */
.top-nav {
  position: relative;
  z-index: 20;
}

.top-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav-logo img {
  height: 3.5rem;
}

.top-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
}

.top-nav-links a {
  color: rgba(27, 59, 111, 0.6);
  transition: color 0.2s;
}

.top-nav-links a:hover {
  color: #1B3B6F;
}

.top-nav-cta {
  display: none;
  background: #F5A623;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.25s;
  border: 2px solid #F5A623;
  align-items: center;
}

.top-nav-cta:hover {
  background: #fff;
  color: #F5A623;
}

.top-nav-tel {
  background: #1B3B6F;
  border-color: #1B3B6F;
}

.top-nav-tel:hover {
  background: #fff;
  color: #1B3B6F;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(27, 59, 111, 0.08);
  color: rgba(27, 59, 111, 0.7);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #F5A623;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 1.875rem;
  line-height: 1.45;
  color: #1B3B6F;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-accent {
  color: #F5A623;
  position: relative;
  display: inline-block;
}

.hero-accent svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
}

.hero-sub {
  color: rgba(27, 59, 111, 0.55);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: #F5A623;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.25s;
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.25);
  display: inline-block;
  text-align: center;
  border: 2px solid #F5A623;
}

.btn-primary:hover {
  background: #fff;
  color: #F5A623;
}

.btn-tel {
  background: #1B3B6F;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.25s;
  box-shadow: 0 10px 15px -3px rgba(27, 59, 111, 0.25);
  display: inline-block;
  text-align: center;
  border: 2px solid #1B3B6F;
}

.btn-tel:hover {
  background: #fff;
  color: #1B3B6F;
}

.btn-secondary {
  color: rgba(27, 59, 111, 0.7);
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  border: 1px solid rgba(27, 59, 111, 0.15);
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  border-color: rgba(27, 59, 111, 0.3);
  color: #1B3B6F;
}

/* Scroll indicator */
.scroll-indicator {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.scroll-indicator-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(27, 59, 111, 0.25);
  animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-indicator-inner span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Bottom wave */
.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-wave-bottom svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================
   PAIN POINTS SECTION
   ============================ */
.pain-points {
  padding: 5rem 0;
  background: #fff;
}

.pain-points-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

.section-divider {
  width: 4rem;
  height: 0.25rem;
  background: #1B3B6F;
  margin: 0 auto;
  border-radius: 9999px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F4F7FB;
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid #E0E8F0;
  margin-bottom: 1rem;
}

.pain-icon {
  margin-top: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(27, 59, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon svg {
  width: 1rem;
  height: 1rem;
  color: #1B3B6F;
  stroke: #1B3B6F;
}

.pain-item p {
  color: #374151;
}

.pain-bridge {
  margin-top: 3rem;
  background: linear-gradient(to right, #EBF1FA, #F0F5FC);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(27, 59, 111, 0.1);
}

.pain-bridge-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pain-bridge-inner svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2B5EA7;
  flex-shrink: 0;
  margin-top: 0.125rem;
  stroke: #2B5EA7;
}

.pain-bridge-inner p {
  color: #374151;
  line-height: 1.625;
}

.pain-bridge-inner .highlight {
  color: #1B3B6F;
  font-weight: 500;
}

/* ============================
   BENEFITS SECTION
   ============================ */
.benefits {
  padding: 5rem 0;
  background: #F4F7FB;
}

.benefits-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.benefits .section-header h2 {
  margin-bottom: 0.5rem;
}

.benefits .section-header .section-title-accent {
  font-size: 1.5rem;
  color: #1B3B6F;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

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

.benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #E0E8F0;
  transition: all 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-color: rgba(43, 94, 167, 0.2);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(27, 59, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(27, 59, 111, 0.12);
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: #2B5EA7;
}

.benefit-card h3 {
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #4B5563;
  line-height: 1.625;
}

/* ============================
   PROPERTY TYPES SECTION
   ============================ */
.property-types {
  padding: 5rem 0;
  background: #fff;
}

.property-types-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.property-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E0E8F0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.property-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.property-card-image {
  position: relative;
  overflow: hidden;
  height: 12rem;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.property-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.property-card-tags {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.property-tag {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  color: #1B3B6F;
}

.property-card-body {
  padding: 1.25rem;
}

.property-card-body h3 {
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.property-card-body p {
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* CTA Banner */
.cta-banner {
  margin-top: 4rem;
  background: linear-gradient(to right, #1B3B6F, #2B5EA7);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  text-align: center;
  color: #fff;
}

.cta-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.cta-banner a {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
}

.cta-banner a:hover {
  background: #E09410;
  transform: scale(1.05);
}

/* ============================
   PRICING SECTION
   ============================ */
.pricing {
  padding: 5rem 0;
  background: #F4F7FB;
}

.pricing-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid #E0E8F0;
  overflow: hidden;
  max-width: 40rem;
  margin: 0 auto;
}

.pricing-header {
  background: linear-gradient(to right, #1B3B6F, #2B5EA7);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.pricing-header .pricing-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-amount .amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-amount .unit {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount .tax {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.625rem;
}

.pricing-header .pricing-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.pricing-body {
  padding: 1.5rem 2rem;
}

.pricing-features {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pricing-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(27, 59, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #2B5EA7;
}

.pricing-feature-text p:first-child {
  color: #111827;
  font-weight: 500;
}

.pricing-feature-text p:last-child {
  color: #6B7280;
  font-size: 0.875rem;
}

.pricing-details {
  border-top: 1px solid #f3f4f6;
  padding-top: 1.5rem;
}

.pricing-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f9fafb;
}

.pricing-detail-row:last-child {
  border-bottom: none;
}

.pricing-detail-row .label {
  color: #6B7280;
  font-size: 0.875rem;
}

.pricing-detail-row .value {
  color: #111827;
  font-size: 0.875rem;
}

/* ============================
   FLOW SECTION
   ============================ */
.flow {
  padding: 5rem 0;
  background: #fff;
}

.flow-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.flow-timeline {
  position: relative;
}

.flow-line {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #1B3B6F, rgba(43, 94, 167, 0.5), transparent);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flow-step {
  position: relative;
  display: flex;
  gap: 1.25rem;
}

.flow-step-icon {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.flow-step-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #1B3B6F;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(27, 59, 111, 0.2);
}

.flow-step-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #fff;
}

.flow-step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #F5A623;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.flow-step-content {
  background: #F4F7FB;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  flex: 1;
  border: 1px solid #E0E8F0;
}

.flow-step-content h3 {
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.flow-step-content p {
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ============================
   FAQ SECTION
   ============================ */
.faq {
  padding: 5rem 0;
  background: #F4F7FB;
}

.faq-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #E0E8F0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
}

.faq-question:hover {
  background: #F4F7FB;
}

.faq-q-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(27, 59, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1B3B6F;
  font-size: 0.875rem;
}

.faq-question .faq-q-text {
  flex: 1;
  color: #111827;
  font-weight: 500;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  margin-left: 3rem;
}

.faq-answer-inner p {
  color: #4B5563;
  line-height: 1.625;
  font-size: 0.875rem;
}

/* ============================
   FINAL CTA SECTION
   ============================ */
.final-cta {
  padding: 5rem 0;
  background: #fff;
}

.final-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.final-cta h2 {
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

.final-cta p {
  color: #4B5563;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-navy {
  display: inline-block;
  background: #1B3B6F;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.25s;
  box-shadow: 0 10px 15px -3px rgba(27, 59, 111, 0.2);
  text-align: center;
  border: 2px solid #1B3B6F;
}

.btn-navy:hover {
  background: #fff;
  color: #1B3B6F;
}

.btn-outline-navy {
  display: inline-block;
  background: #fff;
  color: #1B3B6F;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  border: 2px solid #1B3B6F;
  transition: all 0.25s;
  text-align: center;
}

.btn-outline-navy:hover {
  background: #1B3B6F;
  color: #fff;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #0f2550;
  color: #fff;
  padding: 3rem 0;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 3.5rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 20rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 3rem;
  font-size: 0.875rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #6B7280;
  font-size: 0.875rem;
}

/* ============================
   FLOATING CTA (MOBILE)
   ============================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  gap: 0.5rem;
}

.floating-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.floating-cta-primary {
  background: #F5A623;
  color: #fff;
  box-shadow: 0 4px 10px rgba(245,166,35,0.3);
}

.floating-cta-tel {
  background: #1B3B6F;
  color: #fff;
  box-shadow: 0 4px 10px rgba(27,59,111,0.3);
}

@media (max-width: 767px) {
  .floating-cta {
    display: flex;
  }
  .footer {
    padding-bottom: 5rem;
  }
}

/* ============================
   SVG ICON DEFAULTS
   ============================ */
.icon {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================
   RESPONSIVE — TABLET+
   ============================ */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .final-cta-buttons {
    flex-direction: row;
  }

  .hero-sub br.sm-break {
    display: block;
  }
}

@media (min-width: 768px) {
  .top-nav-links {
    display: flex;
  }

  .top-nav-cta {
    display: inline-flex;
  }

  .top-nav-tel {
    display: inline-flex;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1.125rem;
  }

  .hero-wave-bottom svg {
    height: 80px;
  }

  .pain-points {
    padding: 7rem 0;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .benefits {
    padding: 7rem 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits .section-header .section-title-accent {
    font-size: 2.25rem;
  }

  .benefit-card {
    padding: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.25rem;
  }

  .property-types {
    padding: 7rem 0;
  }

  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-banner h3 {
    font-size: 1.5rem;
  }

  .cta-banner br.md-break {
    display: block;
  }

  .pricing {
    padding: 7rem 0;
  }

  .pricing-body {
    padding: 2rem;
  }

  .pricing-amount .amount {
    font-size: 3.75rem;
  }

  .flow {
    padding: 7rem 0;
  }

  .flow-line {
    left: 2rem;
  }

  .flow-step {
    gap: 2rem;
  }

  .flow-step-icon-box {
    width: 4rem;
    height: 4rem;
  }

  .flow-step-icon-box svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .flow-step-content {
    padding: 1.5rem;
  }

  .faq {
    padding: 7rem 0;
  }

  .final-cta {
    padding: 7rem 0;
  }

  .final-cta h2 {
    font-size: 1.875rem;
  }

  .final-cta p br.md-break {
    display: block;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .property-grid {
    gap: 2rem;
  }

  .benefits-grid {
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}

/* Hide md-break by default, show on md+ */
br.md-break {
  display: none;
}

br.sm-break {
  display: none;
}

/* ── Column Cards (関連コラム) ── */
.column-card {
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.column-card:hover {
  box-shadow: 0 8px 24px rgba(27, 59, 111, 0.15);
  transform: translateY(-4px);
}
.column-card-tag {
  display: inline-block;
  background: #EEF2F7;
  color: #1B3B6F;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  align-self: flex-start;
}
.column-card h3 {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.6rem;
  color: #222;
}
.column-card p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.column-card-arrow {
  font-size: 0.8rem;
  color: #1B3B6F;
  font-weight: 700;
  margin-top: 0.8rem;
  display: inline-block;
}
