/* Hero */
.hero {
  margin-top: 120px;
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,52,90,.65) 0%, rgba(2,40,64,.50) 40%, rgba(3,29,48,.35) 100%);
}
.hero-route-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: .08;
  background: url('/wp-content/uploads/2026/03/texture-route-white.jpg') center/cover no-repeat;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 72px 32px 120px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block; background: rgba(231,27,30,.9); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 7px 18px; border-radius: 4px;
  margin-bottom: 20px; letter-spacing: .04em;
  box-shadow: 0 2px 12px rgba(231,27,30,.3);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 64px); font-weight: 900;
  line-height: 1.25; letter-spacing: .04em; margin-bottom: 16px;
}
.hero h1 .accent { color: #FF6B6B; font-size: 1.2em; text-shadow: 0 2px 16px rgba(231,27,30,.3); }
.hero .hero-sub {
  font-size: 22px; font-weight: 500; opacity: .92; margin-bottom: 28px;
  letter-spacing: .03em; line-height: 1.7;
}

/* Hero prices - comparison style */
.hero-prices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-bottom: 36px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.hero-price-tag {
  padding: 28px 18px; text-align: center;
  position: relative;
  transition: background .3s;
}
.hero-price-tag:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: var(--border);
}
.hero-price-tag:first-child {
  background: rgba(231,27,30,.06);
  border-bottom: 4px solid var(--red);
}
.hero-price-tag .label { font-size: 13px; color: var(--text-sub); margin-bottom: 6px; letter-spacing: .06em; }
.hero-price-tag:first-child .label { color: var(--red); font-weight: 600; }
.hero-price-tag .price { font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; }
.hero-price-tag:first-child .price { color: var(--red); font-size: 48px; }
.hero-price-tag .price small { font-size: 14px; font-weight: 400; color: var(--text-sub); }
.hero-price-tag .price-note {
  font-size: 12px; color: var(--text-sub); margin-top: 4px;
}
.hero-price-tag:first-child .price-note { color: var(--red); opacity: .7; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn-primary {
  padding: 18px 44px; font-size: 16px;
  box-shadow: 0 4px 24px rgba(231,27,30,.4);
}

/* Hero right panel - 営業パネル */
.hero-right { display: flex; flex-direction: column; gap: 0; }
.hero-cta-panel {
  background: var(--white); border-radius: 18px;
  padding: 0;
  box-shadow: 0 16px 56px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.1);
  position: relative; overflow: hidden;
}
.hero-cta-panel-header {
  background: var(--navy); color: var(--white);
  padding: 20px 24px; text-align: center;
  font-size: 16px; font-weight: 700; letter-spacing: .06em;
}
.hero-cta-panel-header small {
  display: block; font-size: 11px; font-weight: 400; opacity: .6; margin-top: 2px;
}
.hero-cta-panel-body { padding: 24px; }
.hero-cta-tel {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: var(--bg-light); border-radius: 12px;
  margin-bottom: 14px; border: 2px solid transparent;
  transition: border-color .3s;
}
.hero-cta-tel:hover { border-color: var(--navy); }
.hero-cta-tel .tel-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hero-cta-tel .tel-num {
  font-size: 32px; font-weight: 900; color: var(--navy);
  letter-spacing: .02em;
}
.hero-cta-tel .tel-sub { font-size: 11px; color: var(--text-sub); }
.hero-cta-stars { text-align: center; margin-bottom: 4px; }
.stars-gold { color: #DAA520; font-size: 24px; letter-spacing: 4px; }
.hero-cta-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.hero-cta-btns a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center; padding: 15px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.hero-cta-btns a:hover { transform: translateY(-1px); }
.hero-cta-btn-estimate {
  background: var(--red); color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(231,27,30,.3);
  font-size: 16px !important; padding: 17px !important;
}
.hero-cta-btn-photo {
  background: var(--bg-light); color: var(--navy) !important;
  border: 1px solid var(--border);
}
.hero-cta-btn-photo svg { flex-shrink: 0; }
.hero-cta-driver {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: #FFF8F0; border-radius: 10px;
  border: 1px solid #FFE8CC;
}
.hero-cta-driver-icon {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--red);
}
.hero-cta-driver-icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-cta-driver-body { font-size: 12px; color: var(--text-sub); line-height: 1.5; }
.hero-cta-driver-body strong { color: var(--navy); font-size: 14px; display: block; }

/* Trust bar - hero inline */
.trust-bar {
  position: relative; z-index: 4;
  margin-top: -56px; padding: 0 32px;
}
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-item { text-align: center; padding: 32px 12px; position: relative; min-width: 0; overflow: hidden; }
.trust-item:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.trust-item-num { font-size: 30px; font-weight: 900; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.trust-item:nth-child(2) .trust-item-num { color: var(--red); font-size: 36px; }
.trust-item-label { font-size: 13px; color: var(--text-sub); margin-top: 4px; }

/* Reason - photo-led alternating */
.section--reasons { padding: 100px 0 80px; }
.reason-block {
  max-width: 1100px; margin: 0 auto 64px; padding: 0 32px;
  display: grid; grid-template-columns: 55% 1fr; gap: 48px;
  align-items: center;
}
.reason-block--reverse { grid-template-columns: 1fr 55%; }
.reason-block--reverse .reason-block-img { order: 2; }
.reason-block--reverse .reason-block-body { order: 1; }
.reason-block-img {
  position: relative; border-radius: 0 20px 20px 0; overflow: hidden;
  aspect-ratio: 4/3;
}
.reason-block-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reason-block--reverse .reason-block-img { border-radius: 20px 0 0 20px; }
.reason-block-img .reason-watermark {
  position: absolute; bottom: 16px; left: 20px;
  font-size: 96px; font-weight: 900; color: rgba(255,255,255,.1);
  line-height: 1; font-family: 'Arial Black', sans-serif;
}
.reason-block--reverse .reason-block-img .reason-watermark {
  left: auto; right: 20px;
}
/* Reason image overlay label */
.reason-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(4,52,90,.8) 0%, transparent 100%);
  padding: 32px 20px 16px; color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
}
.reason-block-body { padding: 12px 0; position: relative; }
.reason-block-num {
  position: absolute; right: -10px; top: -30px; z-index: 0;
  font-size: 120px; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(4,52,90,.08);
  letter-spacing: -4px; pointer-events: none;
}
.reason-block-body h3 {
  font-size: 30px; font-weight: 900; color: var(--navy);
  margin-bottom: 14px; line-height: 1.4; position: relative; z-index: 1;
}
.reason-block-body p {
  font-size: 18px; color: var(--text-sub); line-height: 2; position: relative; z-index: 1;
}
/* Price comparison bar */
.reason-compare {
  margin-top: 20px; background: var(--bg-light); border-radius: 12px;
  padding: 20px; border: 1px solid var(--border); position: relative; z-index: 1;
}
.reason-compare-title {
  font-size: 14px; font-weight: 700; color: var(--text-sub);
  letter-spacing: .06em; margin-bottom: 14px;
}
.reason-compare-item {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.reason-compare-item:last-child { margin-bottom: 0; }
.reason-compare-label {
  font-size: 13px; font-weight: 600; width: 72px; flex-shrink: 0;
  color: var(--text-sub);
}
.reason-compare-bar {
  height: 34px; border-radius: 6px; display: flex; align-items: center;
  padding: 0 14px; font-size: 16px; font-weight: 800; color: var(--white);
  min-width: 40px;
}
.reason-compare-bar--us {
  background: linear-gradient(90deg, var(--red), #FF6B6B);
  width: 30%; min-width: fit-content;
}
.reason-compare-bar--them {
  background: linear-gradient(90deg, #94A3B8, #CBD5E1);
  width: 100%;
}
.reason-compare-bar--them2 {
  background: linear-gradient(90deg, #94A3B8, #CBD5E1);
  width: 70%;
}
.reason-compare-note {
  font-size: 11px; color: var(--text-sub); margin-top: 8px; opacity: .7;
}
/* Reason highlight */
.reason-highlight {
  background: var(--bg-light); border-left: 3px solid var(--red);
  padding: 14px 18px; margin-top: 16px; border-radius: 0 8px 8px 0;
  font-size: 16px; font-weight: 600; color: var(--navy);
}
/* Reason 2 feature pills */
.reason-features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; position: relative; z-index: 1;
}
.reason-feature-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; background: var(--bg-light); border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--navy);
  border: 1px solid var(--border);
}
.reason-feature-pill svg { color: var(--red); flex-shrink: 0; }

/* Reason 3 - navy card */
.reason-text-card {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.reason-text-card-inner {
  background: var(--navy); color: var(--white);
  border-radius: 20px; padding: 56px 52px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: start; position: relative; overflow: hidden;
}
.reason-text-card-inner::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(231,27,30,.06);
}
.reason-text-card-inner::before {
  content: ""; position: absolute; inset: 0; opacity: .05;
  background: url('/wp-content/uploads/2026/03/texture-logistics.jpg') center/cover no-repeat;
}
.reason-text-card .reason-block-num {
  position: absolute; right: 20px; top: -10px;
  font-size: 120px; -webkit-text-stroke: 1.5px rgba(255,255,255,.1);
  z-index: 1;
}
.reason-text-card-body { position: relative; z-index: 1; }
.reason-text-card h3 {
  font-size: 30px; font-weight: 900; margin-bottom: 14px; color: var(--white);
}
.reason-text-card p {
  font-size: 18px; color: rgba(255,255,255,.75); line-height: 2; margin-bottom: 24px;
}
.reason-text-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
}
.reason-text-card ul li {
  font-size: 17px; color: rgba(255,255,255,.85);
  padding-left: 22px; position: relative; line-height: 1.8;
}
.reason-text-card ul li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF6B6B;
}

/* Diagonal separator */
.section-sep-diagonal {
  height: 72px; position: relative; z-index: 1;
  background: var(--bg-light);
  clip-path: polygon(0 0, 100% 36px, 100% 100%, 0 100%);
  margin-top: -1px;
}
.section-sep-diagonal--reverse {
  clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
}
.section-sep-diagonal--white { background: var(--white); }

/* Service */
.section--services { background: var(--bg-light); position: relative; }

/* Service main - hero card + side cards */
.service-main-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px;
}
.service-photo-card {
  position: relative; border-radius: 16px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-decoration: none; display: block;
}
.service-photo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.service-photo-card-img {
  width: 100%; display: block;
  object-fit: cover;
  background: linear-gradient(135deg, #0A4A7A, #04345A);
}
.service-photo-card--featured .service-photo-card-img { height: 100%; }
.service-photo-card--featured { min-height: 420px; }
.service-photo-card:not(.service-photo-card--featured) .service-photo-card-img { height: 200px; }
.service-photo-card-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 20px;
  color: var(--white);
}
.service-photo-card--featured .service-photo-card-overlay {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  padding: 36px 32px;
}
.service-photo-card-overlay h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.service-photo-card--featured .service-photo-card-overlay h3 { font-size: 30px; margin-bottom: 8px; }
.service-photo-card-overlay .service-photo-price {
  font-size: 32px; font-weight: 900;
}
.service-photo-card--featured .service-photo-card-overlay .service-photo-price {
  font-size: 48px;
}
.service-photo-card-overlay .service-photo-price small { font-size: 15px; font-weight: 400; }
.service-photo-card-overlay .service-photo-desc {
  font-size: 14px; opacity: .85; margin-top: 6px; line-height: 1.6;
}
.service-photo-card--featured .service-photo-card-overlay .service-photo-desc {
  font-size: 17px; margin-top: 10px;
}
.service-photo-card--featured::after {
  content: "一番人気"; position: absolute; top: 16px; right: -4px;
  background: var(--red); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 6px 16px 6px 14px;
  letter-spacing: .06em; z-index: 2;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
}
/* Featured card includes list */
.service-featured-includes {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.service-featured-includes span {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
}

/* Service side cards stacked */
.service-side-stack { display: flex; flex-direction: column; gap: 20px; }

.service-sub-heading {
  text-align: center; margin: 52px 0 20px;
  font-size: 13px; font-weight: 600; color: var(--text-sub);
  display: flex; align-items: center; gap: 16px;
  letter-spacing: .08em; text-transform: uppercase;
}
.service-sub-heading::before,
.service-sub-heading::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.service-sub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.service-sub-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border-left: 3px solid var(--navy);
  display: flex; flex-direction: column;
}
.service-sub-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-sub-card-img { width: 100%; height: 100px; object-fit: cover; display: block; }
.service-sub-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.service-sub-card h3 { font-size: 16px; font-weight: 700; }
.service-sub-card p { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* Wave separator */
.section-sep-wave { position: relative; z-index: 1; line-height: 0; margin-top: -1px; }
.section-sep-wave svg { display: block; width: 100%; height: auto; }

/* Voice */
.section--voice {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FDF8F4 0%, #FFF6F0 50%, var(--white) 100%);
}
.section--voice::before {
  content: ""; position: absolute; inset: 0;
  background: url('/wp-content/uploads/2026/03/customer-moving-scene.jpg') center/cover no-repeat;
  opacity: .07;
}
.section--voice > .container { position: relative; z-index: 2; }
.voice-grid {
  max-width: 1100px; margin: 0 auto;
}
/* Lead voice card - photo + quote */
.voice-card--lead {
  display: grid; grid-template-columns: 100px 1fr; gap: 28px;
  align-items: start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  border-left: 5px solid var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  margin-bottom: 20px;
  position: relative;
}
.voice-card--lead .voice-avatar-img {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 3px solid var(--white);
}
.voice-card--lead .voice-quote-mark {
  font-size: 56px; font-family: Georgia, serif; color: var(--red);
  opacity: .12; line-height: 1; margin-bottom: -12px;
}
.voice-card--lead blockquote {
  font-size: 18px; color: var(--text); line-height: 2;
  font-style: normal; margin: 0;
}
.voice-card--lead .voice-meta { font-size: 13px; color: var(--text-sub); margin-top: 12px; }
.voice-card--lead .voice-scene-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--red); font-weight: 700;
  background: #FFF0F0; padding: 4px 12px; border-radius: 4px;
}

.voice-sub-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.voice-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
}
.voice-card:not(.voice-card--lead)::before {
  content: "\201C"; position: absolute; top: 8px; left: 16px;
  font-size: 48px; font-family: Georgia, serif; color: var(--red);
  opacity: .08; line-height: 1;
}
.voice-card blockquote {
  font-size: 17px; color: var(--text); line-height: 1.9;
  font-style: normal; margin: 0;
}
.voice-card .voice-meta { font-size: 13px; color: var(--text-sub); margin-top: 10px; }
.voice-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 10px;
}
.voice-tag--female { background: #FCE4EC; color: #C62828; }
.voice-tag--elderly { background: #E3F2FD; color: #1565C0; }
.voice-tag--special { background: #FFF3E0; color: #E65100; }
.voice-tag--rush { background: #E8F5E9; color: #2E7D32; }
.voice-disclaimer {
  text-align: center; font-size: 12px; color: var(--text-sub);
  margin-top: 24px; opacity: .6;
}
/* Voice scene icon */
.voice-scene-icon {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-sub); margin-top: 6px;
  opacity: .6;
}

/* FAQ - 2 column */
.section--faq { position: relative; background: var(--bg-light); }
.faq-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 63% 1fr; gap: 36px;
  align-items: start;
}
.faq-item--featured {
  border: 2px solid var(--red); border-radius: var(--radius-lg);
  margin-bottom: 16px; background: var(--white);
  box-shadow: 0 2px 12px rgba(231,27,30,.06);
}
.faq-item--featured .faq-q { font-size: 20px; padding: 28px 32px; }
.faq-item--featured .faq-a p { font-size: 17px; }
.faq-main .faq-item:not(.faq-item--featured) .faq-q { padding: 20px 24px; font-size: 16px; }
.faq-main .faq-item:not(.faq-item--featured) .faq-a p { font-size: 16px; line-height: 1.9; }
.faq-side {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 0; border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  position: sticky; top: 120px; overflow: hidden;
}
.faq-side-header {
  background: var(--navy); color: var(--white);
  padding: 20px 24px;
  font-size: 16px; font-weight: 700; text-align: center;
  letter-spacing: .04em;
}
.faq-side-body { padding: 28px; }
.faq-side-label {
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: .06em; margin-bottom: 14px;
}
.faq-side-list { list-style: none; padding: 0; margin: 0 0 20px; }
.faq-side-list li {
  font-size: 15px; color: var(--text); line-height: 1.7;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  padding-left: 0; position: relative;
  display: flex; gap: 8px; align-items: baseline;
}
.faq-side-list li .faq-side-check {
  color: var(--red); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.faq-side-list li:last-child { border-bottom: none; }

/* Area */
.section--area {
  background: var(--white); position: relative; overflow: hidden;
}
.area-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
/* Map card */
.area-map-card {
  background: var(--white); border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  overflow: hidden;
}
.area-map {
  position: relative;
}
.area-map img {
  width: 100%; height: auto; display: block;
}
/* Map labels */
.area__tag {
  position: absolute; z-index: 2;
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  border: none; cursor: pointer;
  background: rgba(55,55,50,.8); color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
  backdrop-filter: blur(4px);
}
.area__tag:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.area__tag--setagaya {
  background: var(--red); font-size: 15px; padding: 8px 18px;
  box-shadow: 0 4px 20px rgba(231,27,30,.35);
}
.area__tag--setagaya:hover { box-shadow: 0 6px 24px rgba(231,27,30,.45); }
/* Label positions - matching the map geography */
.area__tag--suginami { top: 12%; left: 5%; }
.area__tag--shinjuku { top: 8%; left: 38%; }
.area__tag--shibuya  { top: 42%; left: 30%; }
.area__tag--setagaya { bottom: 18%; left: 4%; }
.area__tag--meguro   { bottom: 12%; left: 32%; }
.area__tag--shinagawa { bottom: 6%; left: 56%; }
.area-right {}
.area-right h3 {
  font-size: 28px; font-weight: 900; margin-bottom: 14px; color: var(--navy);
  line-height: 1.5;
}
.area-right > p {
  font-size: 16px; color: var(--text-sub); margin-bottom: 20px; line-height: 1.9;
}
/* Area why box */
.area-why {
  background: var(--bg-light); border-radius: 12px; padding: 20px;
  margin-bottom: 24px; border: 1px solid var(--border);
}
.area-why-title {
  font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.area-why-title svg { color: var(--red); }
.area-reasons { margin-bottom: 0; }
.area-reasons li {
  font-size: 15px; color: var(--text); line-height: 2;
  padding-left: 20px; position: relative; list-style: none;
}
.area-reasons li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
}
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.area-tag {
  background: var(--white); border: 1px solid var(--border);
  padding: 12px 20px; border-radius: 8px; font-size: 16px; font-weight: 500;
  transition: transform .2s;
}
.area-tag:hover { transform: translateY(-1px); }
.area-tag.primary {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  font-weight: 700; box-shadow: 0 2px 8px rgba(4,52,90,.2);
}
.area-tag--accent {
  background: var(--red-light); border-color: rgba(231,27,30,.15);
  color: var(--red); font-weight: 600;
}

/* News */
.section--news {
  background: var(--white); position: relative;
  padding-bottom: 80px;
}
.news-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1000px; margin: 0 auto 28px;
}
.news-header .section-head { text-align: left; margin-bottom: 0; }
.news-list { max-width: 1000px; margin: 0 auto; }
.news-item {
  display: grid; grid-template-columns: 100px auto 1fr; gap: 14px; align-items: center;
  padding: 22px 16px; border-bottom: 1px solid var(--border);
  transition: background .2s;
  border-radius: 6px;
}
.news-item:first-child { border-top: 3px solid var(--navy); border-left: 3px solid var(--red); }
.news-item:hover { background: var(--bg-light); }
.news-date {
  font-size: 16px; color: var(--navy); flex-shrink: 0;
  font-weight: 800; font-variant-numeric: tabular-nums;
}
.news-cat {
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 3px; white-space: nowrap;
}
.news-cat--case { background: #E3F2FD; color: #1565C0; }
.news-cat--info { background: #FFF3E0; color: #E65100; }
.news-title { font-size: 17px; font-weight: 500; line-height: 1.7; }
.section--news .btn-center .btn-outline { padding: 14px 40px; font-size: 15px; }
.news-title a { transition: color .2s; }
.news-title a:hover { color: var(--red); }

/* Responsive */
@media (max-width: 900px) {
  .hero { margin-top: 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px 80px; width: 100%; min-width: 0; box-sizing: border-box; }
  .hero-content, .hero-right { min-width: 0; max-width: 100%; }
  .hero h1 { font-size: 34px; }
  .hero .hero-sub { font-size: 18px; }
  .hero-prices { grid-template-columns: 1fr 1fr; }
  .hero-price-tag:first-child { grid-column: 1 / -1; border-bottom: 4px solid var(--red); display: flex; align-items: center; gap: 12px; padding: 18px 20px; }
  .hero-price-tag:first-child .label { margin-bottom: 0; }
  .hero-price-tag:first-child .price-note { margin-top: 0; }
  .hero-price-tag:not(:first-child)::after { display: none; }
  .hero-price-tag:nth-child(2)::after { content: ""; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--border); display: block; }
  .hero-price-tag { padding: 16px 12px; }
  .hero-price-tag .label { font-size: 12px; }
  .hero-price-tag .price { font-size: 22px; }
  .hero-price-tag .price small { font-size: 11px; }
  .hero-price-tag:first-child .price { font-size: 32px; }
  .hero-price-tag .price-note { font-size: 11px; }
  .hero-btns .btn-primary { padding: 16px 32px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-cta-panel { border-radius: 14px; }
  .trust-bar { margin-top: -28px; padding: 0 16px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 18px 10px; }
  .trust-item:nth-child(2)::after { display: none; }
  .section-sep-diagonal { height: 48px; }
  .reason-block { grid-template-columns: 1fr !important; gap: 20px; padding: 0 16px; }
  .reason-block-img { border-radius: 14px !important; order: 0 !important; aspect-ratio: 16/9; }
  .reason-block-body { order: 1 !important; padding: 0; }
  .reason-block-body h3 { font-size: 22px; }
  .reason-text-card { padding: 0 16px; }
  .reason-text-card-inner { grid-template-columns: 1fr; padding: 28px 20px; text-align: center; }
  .reason-text-card .reason-block-num { margin: 0 auto 8px; }
  .reason-text-card ul { grid-template-columns: 1fr; }
  .service-main-grid { grid-template-columns: 1fr; }
  .service-photo-card--featured { min-height: auto; }
  .service-photo-card--featured .service-photo-card-img { height: 260px; }
  .service-photo-card:not(.service-photo-card--featured) .service-photo-card-img { height: 200px; }
  .service-sub-grid { grid-template-columns: 1fr; }
  .voice-card--lead { grid-template-columns: 1fr; text-align: center; }
  .voice-card--lead .voice-avatar-img { margin: 0 auto; }
  .voice-sub-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .area-layout { grid-template-columns: 1fr; gap: 24px; }
  .area__tag { font-size: 11px; padding: 4px 10px; }
  .area__tag--setagaya { font-size: 13px; padding: 6px 14px; }
  .news-item { grid-template-columns: 80px auto 1fr; gap: 8px; }
  .news-item:hover { margin: 0; }
  .reason-compare-bar--them { width: 80%; }
}
@media (max-width: 600px) {
  .trust-item-num { font-size: 22px; }
  .hero-price-tag .price { font-size: 20px; }
  .hero-price-tag .price small { font-size: 10px; }
  .hero-price-tag:first-child .price { font-size: 28px; }
  .hero-price-tag { padding: 14px 10px; }
  .hero-price-tag .label { font-size: 11px; }
  .hero-price-tag .price-note { font-size: 10px; }
  .hero .hero-sub { font-size: 16px; }
  .area__tag { font-size: 10px; padding: 3px 8px; }
  .area__tag--setagaya { font-size: 12px; padding: 5px 12px; }
  .reason-compare { padding: 16px; }
}
