@charset "UTF-8";
/* =========================
   Magokoro Real Estate Theme
   Concept: Warmth, Trust, Simplicity
   ========================= */
:root {
  /* Colors */
  --bg: #ffffff;
  --bg2: #f4f4f0;
  --text: #3d3d3d;
  --text-light: #6e6e6e;
  --text-subtle: #999;
  --brand: #EC622E; /* Terracotta / Warm Orange */
  --brand-light: #f5e6e0;
  --brand-dark: #b55d3f;
  --accent: #789c8a; /* Sage Green */
  --accent-light: #e8f0eb;
  --white: #ffffff;
  --stroke: #e6e6e6;
  --stroke-dark: #dcdcdc;
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
  /* Spacing & Radius */
  --container: 1140px;
  --gutter: 24px;
  --r-xl: 16px;
  --r-lg: 12px;
  --r-md: 8px;
  /* Typography */
  --font: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

p {
  margin: 0 0 1.5em;
  color: var(--text-light);
}

p:last-child {
  margin-bottom: 0;
}

small {
  color: var(--text-subtle);
  font-size: 0.85em;
}

/* BEM Utilities: spacing & alignment */
.u-spacer {
  display: block;
}
.u-spacer--4 {
  height: 4px;
}
.u-spacer--8 {
  height: 8px;
}
.u-spacer--12 {
  height: 12px;
}
.u-spacer--20 {
  height: 20px;
}
.u-spacer--24 {
  height: 24px;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/* Layout Utilities */
.l-container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.l-grid {
  display: grid;
  gap: 24px;
}

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

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

.l-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.l-grid--gap-10 {
  gap: 10px;
}

.l-grid--gap-20 {
  gap: 20px;
}

/* Header */
.topbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999; /* Highest priority */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

body {
  padding-top: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101; /* Ensure brand is above SP menu if needed */
}
.brand__logo {
  object-fit: contain;
}
.brand-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-title small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-light);
}

.navlinks {
  display: flex;
  gap: 4px;
}
.navlinks a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.navlinks a:hover {
  background: var(--bg2);
  color: var(--brand);
}

/* Hamburger Menu (SP Only) */
.hamburger {
  display: none; /* PC: Hidden */
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2000; /* Above SP Menu */
  background: transparent;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger span:nth-child(1) {
  top: 16px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger {
  /* Hamburger Active State (X) */
}
.hamburger.is-active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* SP Menu Drawer */
.sp-nav {
  position: fixed;
  top: 72px; /* Height of mobile header approx */
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: #f4f4f4; /* Reference: Light gray */
  z-index: 9000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding-bottom: 40px;
}
.sp-nav.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.sp-nav-inner {
  width: 100%;
  padding: 0;
  text-align: left;
}
.sp-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  margin-bottom: 24px;
}
.sp-nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: white;
}
.sp-nav-links a::after {
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  color: var(--brand); /* Orange arrow */
  font-weight: bold;
}
.sp-nav-links a:last-child {
  border-bottom: 1px solid #eee; /* Maintain border */
}
.sp-nav-links .sp-nav-links__external {
  background: #fff7f2;
  color: var(--brand);
  font-weight: 700;
  border-left: 4px solid var(--brand);
  padding-left: 16px;
}
.sp-nav-links .sp-nav-links__external::after {
  color: var(--brand-dark);
}
.sp-nav-sns {
  margin-top: 0;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}
.sp-nav {
  /* SP Nav CTA */
}
.sp-nav-cta {
  padding: 0 20px;
  margin-bottom: 24px;
}
.sp-nav-cta .btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px; /* Reference: Rounded pill */
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  gap: 10px;
  background: #eb6100; /* Reference Orange */
  border-color: #eb6100;
  color: white;
  box-shadow: 0 4px 10px rgba(235, 97, 0, 0.3);
}
.sp-nav-cta .btn .icon {
  font-size: 18px;
}
.sp-nav-cta .btn img.icon {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%);
}
.sp-nav-cta .btn::after {
  display: none; /* No arrow for button in reference style if centered */
}

/* Components: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid var(--stroke);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--stroke-dark);
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(236, 98, 46, 0.25);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--brand);
}
.btn--ghost:hover {
  background: var(--brand-light);
}
.btn--sm {
  font-size: 12px;
  padding: 6px 12px;
}
.btn--xs {
  font-size: 13px;
  padding: 6px 12px;
}
.btn--min-width {
  min-width: 180px;
}

.u-full-width {
  width: 100%;
}

/* Panel / Search Box */
.panel {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.panel-head {
  padding: 24px 24px 0;
}
.panel-head--compact {
  padding: 16px 16px 8px;
}
.panel-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.panel-title--16 {
  font-size: 16px;
}
.panel-sub {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-light);
}
.panel-body {
  padding: 24px;
}
.panel-body--compact {
  padding: 0 16px 16px;
}

/* Section Common */
.section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
  }
}
.section--bg2 {
  background: var(--bg2);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--bg2);
  padding-bottom: 16px;
}

.h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.h2 strong {
  color: var(--brand);
}
.h2--20 {
  font-size: 20px;
}
.h2--mb-16 {
  margin-bottom: 16px;
}

/* Form actions (submit row) */
.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.form-actions > * {
  margin: 0;
}
.form-actions .btn,
.form-actions .wpcf7-submit {
  width: auto;
  flex: 0 0 auto;
}

.contact-form .form-actions {
  position: relative;
}
.contact-form .form-actions .wpcf7-spinner {
  display: none !important;
}

/* Link modifiers */
.link--subtle {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: underline;
}

.link--strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.link-wrap--right {
  text-align: right;
  margin-top: 12px;
}

/* Slider navigation (PC only) */
.slider-nav {
  display: none;
}
.slider-nav--hidden {
  display: none !important;
}
.slider-nav__button--hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Home property slider */
.home-property__group + .home-property__group {
  margin-top: 36px;
}
.home-property__content {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.home-property__title {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-left: 12px;
  border-left: 4px solid var(--brand-light);
}
.home-property__focus-area {
  text-decoration: none;
}
.home-property__slider {
  position: relative;
}
.home-property__swiper {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.home-property__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.home-property__card a {
  display: block;
}
.home-property__image {
  height: 180px;
  background: #f0f0f0;
}
.home-property__card, .home-property__card.swiper-slide {
  max-width: 280px;
}
.home-property__body {
  padding: 15px;
}
.home-property__price {
  margin: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
}
.home-property__address {
  margin: 6px 0 10px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.home-property__meta {
  margin: 4px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 12px;
  color: #777;
}
.home-property__meta-label {
  color: #888;
}
.home-property__meta-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

@media (min-width: 1230px) {
  .slider-nav {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
  }
  .slider-nav__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-dark);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
    box-shadow: var(--shadow-sm);
  }
  .slider-nav__button:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff;
  }
  .slider-nav__button.swiper-button-disabled {
    opacity: 0.65;
    cursor: default;
  }
  .slider-nav__button--prev {
    left: -45px;
  }
  .slider-nav__button--next {
    right: -45px;
  }
}
/* Home flow (consultation steps) section */
.home-flow {
  position: relative;
  background: url("./images/backgrounds/bg-flow-family.png") center/cover no-repeat;
  /* warm semi-transparent overlay */
}
.home-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 244, 240, 0.88);
  pointer-events: none;
}
.home-flow {
  /* keep all content above the overlay */
}
.home-flow > .l-container {
  position: relative;
  z-index: 1;
}
.home-flow .section-head {
  border-bottom: none;
}
.home-flow__lead {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}
.home-flow__timeline {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: flow;
  /* horizontal connector line */
}
.home-flow__timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-light) 100%);
}
.home-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(236, 98, 46, 0.1);
}
.home-flow__step:hover .home-flow__number {
  background: var(--brand);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(236, 98, 46, 0.25);
}
.home-flow__body {
  margin-top: 20px;
  padding: 0 8px;
}
.home-flow__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.home-flow__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-light);
}
.home-flow__cta {
  margin-top: 48px;
  text-align: center;
}

/* Home blog slider */
.home-blog__card.swiper-slide {
  max-width: 250px;
}
.home-blog__slider {
  position: relative;
}
.home-blog__swiper {
  overflow: hidden;
}
.home-blog__card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-blog__card:hover {
  transform: translateY(-2px);
}
.home-blog__img {
  aspect-ratio: 16/8;
  background: #f0f0f0;
}
.home-blog__body {
  padding: 16px 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.home-blog__meta {
  margin: 0 0 8px;
  font-size: 12px;
  color: #999;
}
.home-blog__title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  min-height: 3em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-blog__excerpt {
  margin: 0 0 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.8em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.home-blog__more {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}
.home-blog__more:hover {
  text-decoration: underline;
}

/* Inquiry promo block (home page) */
.inquiry-promo__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.inquiry-promo__tagline {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.inquiry-promo__headline {
  margin: 0 0 32px;
  color: var(--text);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.4;
  font-weight: 800;
}
.inquiry-promo__marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.inquiry-promo__marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 10px;
  background: #f4e1de;
  z-index: -1;
}
.inquiry-promo__description {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
}
.inquiry-promo__description p {
  margin: 0;
}
.inquiry-promo__description p + p {
  margin-top: 6px;
}
.inquiry-promo__action-stack {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inquiry-promo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.3s;
}
.inquiry-promo__btn:hover {
  opacity: 0.8;
}
.inquiry-promo__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.inquiry-promo__btn--primary .inquiry-promo__btn-icon {
  filter: brightness(0) invert(1);
}
.inquiry-promo__btn--outline .inquiry-promo__btn-icon {
  filter: brightness(0);
}
.inquiry-promo__btn--primary {
  background: var(--brand);
  color: #fff;
}
.inquiry-promo__btn--outline {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}
.inquiry-promo__divider {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin: 8px 0;
}
.inquiry-promo__insta-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.inquiry-promo__insta-link:hover {
  transform: translateY(-2px);
}
.inquiry-promo__insta-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: contain;
  color: #fff;
  font-size: 18px;
}
.inquiry-promo__insta-label {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.inquiry-promo__insta-small {
  font-size: 9px;
  color: #999;
  font-weight: 700;
}
.inquiry-promo__insta-id {
  font-size: 15px;
  font-weight: 700;
}
.inquiry-promo__insta-arrow {
  color: #ccc;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 950px) {
  .home-flow__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .home-flow__timeline::before {
    display: none;
  }
  .inquiry-promo__inner {
    flex-direction: column;
    text-align: center;
  }
  .inquiry-promo__action-stack {
    max-width: 100%;
  }
  .inquiry-promo__headline {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .home-property {
    padding-inline: 0;
  }
  .home-property__content {
    width: auto;
    margin-inline: 0;
  }
  .home-property__title {
    font-size: 15px;
    margin-bottom: 12px;
    margin-left: 24px;
    padding-left: 12px;
  }
  .home-property__swiper {
    padding: 0 24px !important;
    width: 100vw;
  }
  .home-property__empty,
  .home-blog__empty {
    padding-inline: var(--gutter);
  }
  .home-flow {
    background-image: url("./images/backgrounds/bg-flow-family-sp.png");
  }
  .home-flow .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .home-flow__lead {
    font-size: 14px;
  }
  .home-flow__timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding-left: 54px;
  }
  .home-flow__timeline::before {
    display: block;
    top: 42px;
    bottom: 42px;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-light) 100%);
  }
  .home-flow__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 20px 0;
  }
  .home-flow__number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 15px;
    margin-left: -54px;
  }
  .home-flow__body {
    margin-top: 0;
    padding: 2px 0 0;
  }
  .home-flow__title {
    font-size: 16px;
  }
  .home-flow__text {
    font-size: 13px;
  }
  .home-flow__cta {
    margin-top: 36px;
  }
  .home-blog__swiper {
    padding: 0 24px !important;
    width: 100vw;
  }
  .inquiry-promo__headline {
    font-size: 28px;
  }
  .inquiry-promo__description {
    font-size: 17px;
  }
}
/* SNS Link */
.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.sns-link__icon-wrapper {
  display: flex;
  align-items: center;
}
.sns-link__icon {
  display: block;
  width: 16px;
  height: 16px;
}
.sns-link__text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: underline;
}
.sns-link {
  /* Footer specific modifier (if needed, though currently handled by footer-sns context in some places) */
}
.sns-link--footer {
  margin-top: 0;
  justify-content: flex-start;
}

.tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg2);
  color: var(--text-light);
  border-radius: 4px;
}

/* SP Fixed CTA */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 8px 12px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  gap: 8px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fixed-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fixed-cta__btn:active {
  opacity: 0.8;
}
.fixed-cta__btn--tel {
  background: var(--white);
  color: var(--brand);
  border: 2px solid var(--brand);
}
.fixed-cta__btn--tel .fixed-cta__icon {
  filter: invert(42%) sepia(93%) saturate(1350%) hue-rotate(350deg) brightness(95%) contrast(92%);
}
.fixed-cta__btn--form {
  background: var(--brand);
  color: var(--white);
  border: 2px solid var(--brand);
}
.fixed-cta__btn--form .fixed-cta__icon {
  filter: brightness(0) invert(1);
}
.fixed-cta__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.fixed-cta__label {
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .fixed-cta {
    display: flex;
  }
}
/* PC Fixed External CTA */
.pc-niigata-fab {
  display: none;
}

@media (min-width: 827px) {
  .pc-niigata-fab {
    width: 136px;
    height: 136px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 850;
    border-radius: 999px;
    border: 1px solid rgba(236, 98, 46, 0.62);
    background: linear-gradient(145deg, rgba(236, 98, 46, 0.86) 0%, rgba(216, 82, 32, 0.86) 100%);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(216, 82, 32, 0.18);
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    animation: pc-niigata-fab-float 6s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  }
  .pc-niigata-fab__text {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }
  .pc-niigata-fab:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 22px rgba(216, 82, 32, 0.22);
    opacity: 1;
    filter: none;
    animation-play-state: paused;
  }
  .pc-niigata-fab:focus-visible {
    outline: 3px solid #ffd7c7;
    outline-offset: 2px;
  }
}
@keyframes pc-niigata-fab-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pc-niigata-fab {
    animation: none;
  }
}
/* Hero Section (Revised) */
.hero-mv {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./images/backgrounds/top-mv.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-mv {
    position: sticky;
    top: -80px;
    z-index: 0;
    min-height: calc(80vh + 80px);
    padding-top: 80px;
  }
}
.hero-mv {
  /* Overlay */
}
.hero-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay 0.4 */
  z-index: 0;
}
.hero-mv-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  color: white;
  padding: 40px 0;
}
.hero-mv-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  margin: 0 0 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
  letter-spacing: 0.06em;
}
.hero-mv-sub {
  font-size: 18px;
  margin-bottom: 16px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  color: white;
  letter-spacing: 0.05em;
}

/* Search Box in Hero (PC) */
.hero-search-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 32px 40px;
  border-radius: var(--r-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: left;
  max-width: 960px;
  margin-inline: auto;
}

.hero-search-head {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 140px;
  gap: 16px;
  align-items: end;
}

.search-btn-area {
  display: flex;
  align-items: flex-end;
}

/* SP Search Section (Displayed first on mobile) */
.sp-search-section {
  display: none; /* Default hidden on PC */
  padding: 20px 0;
  background: var(--bg2);
}

.hero-search-box-sp {
  background: #ffffff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Forms */
.form {
  display: grid;
  gap: 20px;
}
.form--gap-12 {
  gap: 12px;
}
.form__submit-row {
  margin-top: 4px;
}
.form__link-wrap {
  text-align: center;
  margin-top: 8px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
}

.select,
.input,
.textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: #fdfdfd;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.select:focus,
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.textarea {
  min-height: 180px;
  resize: none;
}

.req {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: #ffe9df;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.opt {
  margin-left: 6px;
  color: var(--text-subtle);
  font-size: 11px;
  font-weight: 600;
}

.field--consent {
  margin-top: -4px;
}
.field--consent .wpcf7-list-item {
  margin: 0;
}
.field--consent .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.field--consent .wpcf7-list-item input[type=checkbox] {
  margin: 0;
}
.field--consent .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
}
.field--consent .wpcf7-list-item-label a {
  color: #2563eb;
  text-decoration: underline;
}
.field--consent .wpcf7-list-item-label .req {
  white-space: nowrap;
}

.contact-form-section__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.contact-form-section__note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-light);
}

.contact-form__hint {
  margin-top: 4px;
  color: var(--text-subtle);
  font-size: 12px;
}

/* Contact Form 7 compatible styling */
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 12px;
  color: #c0392b;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e7b5ab;
  background: #fff4f1;
  color: #8a2f1f;
  font-size: 13px;
}
.wpcf7 form.sent .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #b6d9c7;
  background: #f1faf5;
  color: #275b3f;
  font-size: 13px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-light);
}

/* Property Cards */
.card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.card-media {
  overflow: hidden;
}
.card-media__inner {
  height: 200px;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card-pad {
  padding: 20px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.card-title--16 {
  font-size: 16px;
}
.card-title--18 {
  font-size: 18px;
}
.card-title a {
  color: var(--text);
}
.card-title a:hover {
  color: var(--brand);
}
.card-desc {
  font-size: 13px;
  margin-bottom: 12px;
}
.card__footer {
  margin-top: auto;
}
.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.card-meta .pill {
  font-size: 11px;
  padding: 4px 10px;
  background: white;
}

.kv {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: var(--bg2);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.kv__cell--right {
  text-align: right;
}

.mini {
  font-size: 11px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
}

/* List Card Layout Override — PC */
.list-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
}
.list-card .card-media {
  height: 100%;
}
.list-card .card-media__inner {
  height: 240px;
}
.list-card .card-pad {
  padding: 14px 18px;
  min-width: 0;
}
.list-card .card-title {
  font-size: 16px;
  margin-bottom: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-card .card-title a {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--stroke);
  padding-top: 60px;
  margin-top: 80px;
}
@media (min-width: 768px) {
  .footer {
    position: relative;
    z-index: 1;
  }
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.footer-logo-area {
  margin-bottom: 8px;
}
.footer-logo-area__img {
  object-fit: contain;
}
.footer-company-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-top: 12px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}
.footer-sns .sp-nav-sns {
  justify-content: flex-start !important; /* Force align left */
  margin: 0 !important;
}

.footlinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start; /* 左揃え */
  text-align: left;
  max-width: 600px;
}
.footlinks a {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.footlinks a:hover {
  color: var(--brand);
}
.footlinks .footlinks__external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footlinks__external-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: block;
  opacity: 0.88;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.footlinks .footlinks__external-link:hover .footlinks__external-icon {
  transform: translate(1px, -1px);
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(41%) sepia(87%) saturate(1863%) hue-rotate(346deg) brightness(95%) contrast(92%);
}

.copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--stroke);
  color: var(--text-subtle);
  font-size: 12px;
}

/* Page Header (Sub-pages) */
.page-header {
  margin-bottom: 0;
}

.page-header--showcase {
  display: block;
  height: auto;
  /* 上下の余白を広げ、ページ全体の「呼吸」を楽にする */
  padding: 100px 0 60px;
  background: #fdfcf9;
  overflow: hidden;
}
.page-header--showcase::before {
  display: none;
}
.page-header--showcase .page-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
}
.page-header--showcase .page-header__text {
  position: relative;
  z-index: 2; /* 画像より確実に上へ */
  /* 重なりを少し深め、かつ文字の可読性を守るマージン */
  margin-right: -80px;
  flex-shrink: 0;
}
.page-header--showcase .page-header__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 13px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  /* レタースペシングを広げ、高級感を演出 */
  letter-spacing: 0.4em;
  text-transform: uppercase;
  line-height: 1.3;
}
.page-header--showcase .page-header__title {
  margin: 0;
  color: #1a1a1a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  /* クオリティを出すため、少しサイズを絞る */
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: none;
  -webkit-font-smoothing: antialiased; /* 文字の輪郭をシャープに */
}
.page-header--showcase .page-header__image-wrapper {
  flex-grow: 1;
  /* ★重要：高さを200px前後に抑えて「スリット」にする */
  height: 200px;
  overflow: hidden;
  border-radius: 2px; /* 角丸をあえて小さくし、建築的な印象に */
  position: relative;
  opacity: 0.9; /* わずかに背景と馴染ませる */
  /* 画像に薄いベールをかけて主張を殺す */
}
.page-header--showcase .page-header__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 252, 249, 0.15);
  z-index: 1;
}
.page-header--showcase .page-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.page-header--showcase .page-header__image--bottom {
  object-position: center 66%;
}

/* Breadcrumb Adjustments */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-subtle);
  background: var(--bg);
}

/* Detail Page Specifics (No Page Header) */
/* 物件詳細・ブログ詳細ページでは、ページヘッダーがないためパンくずに余白を持たせる */
.page-detail .breadcrumb {
  padding-left: 12px;
  padding-right: 12px;
}

/* Privacy Policy Page（プライバシーポリシー専用・他ページに影響しない） */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 60px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.privacy-content > p:first-child {
  margin: 0 0 32px;
}
.privacy-content section {
  margin-bottom: 32px;
}
.privacy-content section:last-child {
  margin-bottom: 0;
}
.privacy-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
  color: var(--text);
}
.privacy-content p {
  margin: 0 0 12px;
}
.privacy-content p:last-child {
  margin-bottom: 0;
}
.privacy-content ul,
.privacy-content ol {
  margin: 0 0 12px;
  padding-left: 1.2em;
}
.privacy-content ol {
  list-style-type: decimal;
}
.privacy-content li {
  margin-bottom: 6px;
}
.privacy-content a {
  color: var(--brand);
  text-decoration: underline;
}
.privacy-content__page-title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--text);
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
}

/* Company Page Styles - 代表挨拶：左＝タイトル・本文、右＝画像 */
.company-greeting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.company-greeting__content {
  height: 100%;
}
.company-greeting__section {
  height: 100%;
}
.company-greeting__title {
  font-size: 20px;
  margin-bottom: 16px;
}
.company-greeting__text {
  font-family: "Klee One", cursive;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--text);
}
.company-greeting__text:first-of-type {
  font-weight: 600;
}
.company-greeting__spacer {
  height: 12px;
}

.company-portrait {
  width: 60%;
  margin-inline: auto;
}
.company-portrait__container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  overflow: hidden;
}
.company-portrait__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-outline {
  margin-top: 40px;
}
.company-outline__title {
  font-size: 20px;
  margin-bottom: 16px;
}
.company-outline__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.company-branch__title {
  font-size: 16px;
  margin: 0 0 12px;
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 32px;
  /* Remove margin from last child if needed, but keeping simple for now */
}
.company-table:last-child {
  margin-bottom: 0;
}
.company-table__row {
  border-bottom: 1px solid var(--stroke);
}
.company-table__head {
  text-align: left;
  padding: 12px;
  background: var(--bg2);
  width: 30%;
  vertical-align: top;
}
.company-table__data {
  padding: 12px;
}

.company-map-cell {
  padding: 12px 0;
}

.company-map {
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-map__placeholder {
  color: #999;
}

/* Business Page */
.business-hero {
  background: #f4f1ed;
  padding: 60px 0;
  position: relative;
  overflow: visible;
  /* 背景画像を右側に配置 */
}
.business-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url("./images/backgrounds/business-hero-bg@1x.jpg");
  background-image: image-set(url("./images/backgrounds/business-hero-bg@1x.jpg") 1x, url("./images/backgrounds/business-hero-bg.jpg") 2x);
  border-radius: var(--r-xl) 0 0 var(--r-xl);
  z-index: 0;
}
.business-hero__inner {
  position: relative;
  z-index: 1;
}
.business-hero__body {
  background: #fff;
  padding: 64px;
  max-width: 640px;
  box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.08);
  border-radius: var(--r-xl);
  margin-right: -100px;
}
.business-hero__kicker {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #e67e22;
  font-family: "Playfair Display", serif;
}
.business-hero__title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  font-family: "Noto Serif JP", serif;
}
.business-hero__title-accent {
  /* 「地域の価値を引き出す〜」の部分 */
  display: block;
  margin-top: 8px;
  color: #b0956b;
  font-size: 0.85em;
}
.business-hero__lead {
  margin: 32px 0 0;
  font-size: 15px;
  line-height: 2;
  color: #555;
  font-weight: 400;
}

/* --- Anchor Navigation Cards --- */
.business-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: -32px 0 0;
  position: relative;
  z-index: 2;
}
.business-nav__card {
  --business-nav-accent: var(--brand);
  --business-nav-accent-soft: #fdf0ea;
  --business-nav-accent-shadow: rgba(236, 98, 46, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px 22px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.business-nav__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--business-nav-accent);
  transition: height 0.3s ease;
}
.business-nav__card:focus-visible {
  outline: 3px solid var(--business-nav-accent);
  outline-offset: 2px;
  transform: translateY(-2px);
}
.business-nav__card--renovation {
  --business-nav-accent: var(--brand);
  --business-nav-accent-soft: #fdf0ea;
  --business-nav-accent-shadow: rgba(236, 98, 46, 0.2);
}
.business-nav__card--estate {
  --business-nav-accent: #d9825b;
  --business-nav-accent-soft: #f8eee9;
  --business-nav-accent-shadow: rgba(217, 130, 91, 0.22);
}
.business-nav__card--hotel {
  --business-nav-accent: var(--accent);
  --business-nav-accent-soft: #eef5f1;
  --business-nav-accent-shadow: rgba(120, 156, 138, 0.25);
}
.business-nav__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--business-nav-accent);
}
.business-nav__card:hover::before {
  height: 6px;
}
.business-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--business-nav-accent-soft);
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.business-nav__icon img {
  display: block;
  transition: filter 0.3s ease;
  width: 32px;
  height: 32px;
}
.business-nav__card:hover .business-nav__icon {
  background: var(--business-nav-accent);
  transform: scale(1.08);
  box-shadow: 0 6px 20px var(--business-nav-accent-shadow);
}
.business-nav__card:hover .business-nav__icon img {
  filter: brightness(0) invert(1);
}
.business-nav__no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--business-nav-accent);
  margin-top: 2px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--business-nav-accent-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.business-nav__label {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.business-nav__arrow {
  font-size: 16px;
  color: var(--business-nav-accent);
  transition: transform 0.3s ease;
}
.business-nav__card:hover .business-nav__arrow {
  transform: translateX(4px);
}

/* --- Service Sections (2-column alternating) --- */
.business-section {
  padding: 80px 0;
}
.business-section--alt {
  background: var(--bg2);
}
.business-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.business-section__layout--reverse {
  direction: rtl;
}
.business-section__layout--reverse > * {
  direction: ltr;
}
.business-section__visual {
  position: sticky;
  top: 110px;
}
.business-section__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.business-section__image img, .business-section__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.business-section__image--estate {
  background: linear-gradient(135deg, #f8efe9 0%, #d9825b 40%, #a65c3a 100%);
}
.business-section__image--hotel {
  background: linear-gradient(135deg, #e8f0eb 0%, #789c8a 40%, #5a7e6c 100%);
}
.business-section__image-label {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}
.business-section__no {
  margin: 0 0 6px;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--brand-light);
  letter-spacing: 0.04em;
}
.business-section--alt .business-section__no {
  color: #f0d8cd;
}
.business-section__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: 0.01em;
}
.business-section__subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 0.03em;
}
.business-section__copy {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
}
.business-section__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.business-section__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.business-section__list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-light);
  box-shadow: inset 0 0 0 3px #f2b89d;
  transform: translateY(-50%);
}
.business-section__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Consult Section (inside estate) --- */
.business-consult {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--r-xl);
  border: 1px solid #f0d8cd;
  background: linear-gradient(135deg, #fffaf7 0%, #fff5f0 100%);
}
.business-consult__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.business-consult__title::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 4px;
  background: var(--brand);
}
.business-consult__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.business-consult__item {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  background: #fff;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.business-consult__item:hover {
  border-left-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.business-consult__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.business-consult__purpose {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.business-consult__desc {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* --- CTA Section --- */
.business-cta {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand) 0%, #d45a28 50%, var(--brand-dark) 100%);
  overflow: hidden;
}
.business-cta__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%), radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.business-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.business-cta__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.02em;
}
.business-cta__copy {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.business-cta__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* CTA Button Modifiers */
.btn--cta-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  font-weight: 700;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn--cta-primary:hover {
  background: #fff;
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--cta-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  min-width: 200px;
}
.btn--cta-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

/* Layout Page Specifics */
.l-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.sidebar {
  position: sticky;
  top: 100px;
}

/* Property Detail Page */
.property-detail__grid {
  gap: 24px;
}
.property-detail__title {
  color: var(--text);
}
.property-detail__title strong {
  color: inherit;
}
.property-detail__section-head {
  margin-bottom: 16px;
}
.property-detail__sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  height: max-content;
}
.property-detail__gallery-card {
  --property-detail-gallery-pad: 20px;
}
.property-detail__heading {
  font-size: 18px;
  margin-bottom: 16px;
}
.property-detail__gallery {
  border: 1px solid var(--stroke);
  background: #f7f7f7;
  padding: 8px;
}
.property-detail__gallery-main-wrap {
  position: relative;
  padding-inline: 40px;
}
.property-detail__gallery-main-wrap--empty {
  padding-inline: 0;
}
.property-detail__gallery-thumbs-wrap {
  margin-top: 16px;
  border-top: 1px solid var(--stroke);
  background: #f7f7f7;
  padding: 8px;
  margin-inline: calc(-1 * var(--property-detail-gallery-pad));
  margin-bottom: calc(-1 * var(--property-detail-gallery-pad));
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.property-detail__gallery-thumbs-wrap--hidden {
  display: none;
}
.property-detail__gallery-thumbs-control {
  position: relative;
  width: max-content;
  min-width: 100%;
}
.property-detail__gallery-main-swiper {
  position: relative;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.property-detail__gallery-main-slide {
  aspect-ratio: 4/3;
}
.property-detail__gallery-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-detail__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-dark);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.property-detail__gallery-nav:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}
.property-detail__gallery-nav.swiper-button-disabled {
  opacity: 0.65;
  cursor: default;
}
.property-detail__gallery-nav--hidden {
  display: none !important;
}
.property-detail__gallery-nav--prev {
  left: -10px;
}
.property-detail__gallery-nav--next {
  right: -10px;
}
.property-detail__gallery-thumbs-swiper {
  margin-top: 0;
  background: #f4f4f4;
  padding: 8px 12px;
  overflow: visible;
  width: max-content;
  min-width: 100%;
}
.property-detail__gallery-thumbs-swiper .swiper-wrapper {
  display: flex;
  gap: 12px;
  width: max-content;
}
.property-detail__gallery-thumb-slide {
  width: 106px !important;
  height: 106px !important;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.property-detail__gallery-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-detail__gallery-thumbs-swiper .swiper-slide-thumb-active {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
  opacity: 1;
}
.property-detail__gallery-empty {
  aspect-ratio: 4/3;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
  display: grid;
  place-items: center;
  text-align: center;
}
.property-detail__gallery-empty-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 40px;
  border: 1px solid var(--stroke-dark);
  border-radius: 999px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.92);
}
.property-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.property-detail__table-row {
  border-bottom: 1px solid var(--stroke);
}
.property-detail__table-head {
  text-align: left;
  padding: 12px;
  background: var(--bg2);
  width: 30%;
}
.property-detail__table-data {
  padding: 12px;
}
.property-detail__features-area {
  margin-top: 18px;
  padding: 14px 14px 12px;
  border: 1px solid var(--brand-light);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}
.property-detail__features-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.03em;
}
.property-detail__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.property-detail__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(236, 98, 46, 0.35);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.property-detail__spacer {
  height: 10px;
}
.property-detail__map-container {
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #f0f0f0;
  border: 1px solid var(--stroke);
}
.property-detail__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.property-detail__map-note {
  display: block;
  margin-top: 8px;
}
.property-detail__inquiry-panel {
  overflow: hidden;
  border: 1px solid #f1d5c8;
  box-shadow: 0 10px 28px rgba(236, 98, 46, 0.1);
}
.property-detail__inquiry-head {
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #fff7f2 0%, #fff 100%);
  border-bottom: 1px solid #f3dfd6;
}
.property-detail__inquiry-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}
.property-detail__inquiry-sub {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}
.property-detail__inquiry-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.property-detail__inquiry-pricebox {
  border: 1px solid #f2e3db;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}
.property-detail__inquiry-price-label {
  margin: 0 0 2px;
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
}
.property-detail__inquiry-price {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.property-detail__inquiry-price-meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--brand-dark);
  font-weight: 700;
}
.property-detail__inquiry-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.property-detail__inquiry-points li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.property-detail__inquiry-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateY(-50%);
}
.property-detail__inquiry-actions {
  display: grid;
  gap: 10px;
}
.property-detail__inquiry-btn-secondary {
  border-color: #f0d8cd;
  background: #fffaf7;
  color: var(--brand-dark);
  font-weight: 700;
}
.property-detail__inquiry-btn-secondary:hover {
  border-color: var(--brand);
  background: #fff3ec;
}
.property-detail__inquiry-note {
  margin: 0;
  font-size: 11px;
  color: var(--text-subtle);
  text-align: center;
}

.property-detail-fixed-cta {
  display: none;
}

/* Sidebar CTA */
.sidebar-cta__kv {
  text-align: right;
}
.sidebar-cta__spacer-sm {
  height: 12px;
}
.sidebar-cta__spacer-md {
  height: 16px;
}

/* Property Archive Page */
.property-archive__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-rows: auto 1fr;
  gap: 24px;
}
.property-archive__header {
  grid-column: 1;
  grid-row: 1;
}
.property-archive__main {
  grid-column: 1;
  grid-row: 2;
}
.property-archive__layout .sidebar-search {
  grid-column: 2;
  grid-row: 1/-1;
  align-self: start;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.property-archive__layout .sidebar-search .sidebar-search__form {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}
.property-archive__head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.property-archive__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-archive__sort-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.property-archive__sort-select {
  appearance: none;
  -webkit-appearance: none;
  padding: 6px 32px 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--stroke);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.property-archive__sort-select:hover {
  border-color: var(--stroke-dark);
}
.property-archive__sort-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(236, 98, 46, 0.1);
}
.property-archive__result-count {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-light);
}
.property-archive__result-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.property-archive__grid {
  gap: 20px;
}
.property-archive__card-price {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.property-archive__card-price-unit {
  font-size: 13px;
  font-weight: 600;
  margin-left: 2px;
}
.property-archive__card-specs {
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--stroke);
  min-width: 0;
}
.property-archive__card-spec {
  display: flex;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 12px;
  gap: 6px;
  min-width: 0;
}
.property-archive__card-spec dt {
  color: var(--text-subtle);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.property-archive__card-spec dt::after {
  content: "：";
}
.property-archive__card-spec dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.property-archive__card-spec--full {
  grid-column: 1/-1;
}
.property-archive__card-title-wrap {
  display: none;
  min-width: 0;
}
.property-archive .list-card .card-title {
  min-width: 0;
  overflow: hidden;
}
.property-archive .list-card .card-title a {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-archive__card-visual {
  display: contents;
}
.property-archive__card-specs--side {
  display: none;
}
.property-archive__card-title--pc {
  display: block;
}
.property-archive__card-action {
  margin-top: auto;
}
.property-archive__card-btn {
  width: 100%;
}
.property-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.property-archive__pagination-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.property-archive__pagination-btn img {
  display: block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* Sidebar Search */
.sidebar-search {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stroke);
  padding: 24px;
}
.sidebar-search__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
}
.sidebar-search__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-search__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-search__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.sidebar-search__select {
  width: 100%;
  padding: 8px 32px 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: #fdfdfd;
  color: var(--text);
  font-size: 13px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}
.sidebar-search__select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-light);
}
.sidebar-search__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sidebar-search {
  /* --- こだわり条件 --- */
}
.sidebar-search__fieldset {
  border: none;
  margin: 6px 0 0;
  padding: 0;
}
.sidebar-search__legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stroke);
  width: 100%;
}
.sidebar-search__group + .sidebar-search__group {
  margin-top: 10px;
}
.sidebar-search__group-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.sidebar-search__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.sidebar-search__check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
}
.sidebar-search__check input[type=checkbox] {
  width: 14px;
  height: 14px;
  accent-color: var(--brand);
  margin: 0;
  flex-shrink: 0;
}
.sidebar-search__check:hover {
  color: var(--text);
}
.sidebar-search {
  /* --- Actions --- */
}
.sidebar-search__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.sidebar-search__btn {
  width: 100%;
  font-size: 13px;
  padding: 10px 16px;
}

/* SP Search (簡易フォーム) — PC時は非表示 */
.sidebar-search-sp {
  display: none;
}

@media (max-width: 999px) {
  .sidebar-search-sp {
    display: block;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--stroke);
    padding: 14px;
  }
  .sidebar-search-sp__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand);
  }
  .sidebar-search-sp__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sidebar-search-sp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sidebar-search-sp__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .sidebar-search-sp__label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
  }
  .sidebar-search-sp__select {
    width: 100%;
    padding: 7px 28px 7px 8px;
    border-radius: var(--r-md);
    border: 1px solid var(--stroke);
    background: #fdfdfd;
    color: var(--text);
    font-size: 12px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 12px;
  }
  .sidebar-search-sp__select:focus {
    outline: none;
    border-color: var(--brand);
  }
  .sidebar-search-sp__more {
    width: 100%;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-light);
    border: 1px dashed var(--brand);
    border-radius: var(--r-md);
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
  }
  .sidebar-search-sp__more:hover {
    background: #f0d5cc;
  }
  .sidebar-search-sp__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sidebar-search-sp__btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 12px;
    text-align: center;
  }
  .sidebar-search-sp--bottom {
    margin-top: 24px;
  }
}
/* Search Modal (Micromodal + Bottom-sheet) */
.search-modal {
  display: none;
  z-index: 9999;
}
.search-modal.is-open {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  inset: 0;
}
.search-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  animation: sm-overlay-in 0.3s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.search-modal.is-open[aria-hidden=true] .search-modal__overlay {
  animation: sm-overlay-out 0.25s ease forwards;
}
.search-modal__content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  margin-top: auto; /* 確実に画面下部に寄せる */
  animation: sm-slide-in 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.search-modal.is-open[aria-hidden=true] .search-modal__content {
  animation: sm-slide-out 0.3s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.search-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--stroke);
  flex-shrink: 0;
}
.search-modal__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.search-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg2);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.search-modal__close:hover {
  background: var(--stroke);
}
.search-modal__body {
  overflow-y: auto;
  padding: 16px 20px 24px;
  -webkit-overflow-scrolling: touch;
}
.search-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-modal__section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 6px;
}
.search-modal__divider-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--stroke);
}
.search-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.search-modal__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-modal__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
}
.search-modal__select {
  width: 100%;
  padding: 10px 32px 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: #fdfdfd;
  color: var(--text);
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.search-modal__select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-light);
}
.search-modal__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.search-modal__check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
}
.search-modal__check input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  margin: 0;
}
.search-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--stroke);
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 5;
  margin-inline: -20px;
  background: #fff;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}
.search-modal__btn {
  width: 100%;
  font-size: 14px;
  padding: 12px 16px;
  text-align: center;
}

@keyframes sm-overlay-in {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.45);
  }
}
@keyframes sm-overlay-out {
  from {
    background: rgba(0, 0, 0, 0.45);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes sm-slide-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes sm-slide-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
/* Blog Index Page */
.blog-index__head {
  align-items: center;
  gap: 16px;
}
.blog-index__grid {
  align-items: stretch;
}
.blog-index .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-index .card-media {
  aspect-ratio: 16/9;
  background: #f1f1f1;
}
.blog-index .card-pad {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-index .card-title {
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-index .card-title a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-index__excerpt {
  margin: 0 0 16px;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog-index .card__footer {
  margin-top: auto;
}
.blog-index__filter {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.blog-index__filter-buttons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-index__filter-btn {
  appearance: none;
  border: 1px solid var(--stroke);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  min-height: 34px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-index__filter-btn:hover {
  border-color: var(--brand-light);
  color: var(--brand-dark);
  background: #fffaf7;
}
.blog-index__filter-btn:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
}
.blog-index__filter-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(236, 98, 46, 0.22);
}
.blog-index__status {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.blog-index__loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.blog-index__loader-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d8d8d8;
  border-top-color: var(--brand);
  animation: blog-index-loader-spin 0.8s linear infinite;
}
.blog-index__empty {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}
.blog-index__sentinel {
  width: 100%;
  height: 1px;
}
.blog-index__loader[hidden], .blog-index__empty[hidden], .blog-index__sentinel[hidden] {
  display: none !important;
}

@keyframes blog-index-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
/* Contact Thanks Page */
.contact-thanks__container {
  max-width: 820px;
  margin-inline: auto;
}
.contact-thanks__content {
  text-align: center;
  padding: 16px 8px 8px;
}
.contact-thanks__title {
  margin: 0;
}
.contact-thanks__lead {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}
.contact-thanks__actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Blog Detail content block */
.blog-detail__container {
  max-width: 800px;
  margin-inline: auto;
}
.blog-detail__title {
  font-size: 28px;
  margin-top: 10px;
  line-height: 1.4;
}
.blog-detail__spacer-sm {
  height: 20px;
}
.blog-detail__spacer-md {
  height: 30px;
}
.blog-detail__image-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
}
.blog-detail__image-media {
  aspect-ratio: 16/8;
}
.blog-detail__image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-detail__content {
  font-size: 16px;
  line-height: 1.9;
}
.blog-detail__content p {
  margin: 0;
}
.blog-detail__content p + p {
  margin-top: 1em;
}
.blog-detail__figure {
  margin: 24px 0;
}
.blog-detail__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}
.blog-detail__figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}
.blog-detail__footer {
  border-top: 1px solid var(--stroke);
  padding-top: 20px;
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1115px) {
  body.page-detail--property {
    min-width: 1115px;
    overflow-x: auto;
  }
  body.page-detail--property #main {
    min-width: 1115px;
  }
}
@media (min-width: 768px) {
  /* PC Only/SP Only Utilities */
  .u-sp-only {
    display: none;
  }
}
/* Header Nav: 830px以下でハンバーガーに切り替え */
@media (max-width: 830px) {
  .navlinks {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .nav {
    height: 72px;
    padding: 0;
  }
  body {
    padding-top: 72px;
  }
}
/* 物件一覧：999px以下でSPデザイン */
@media (max-width: 999px) {
  .business-consult__grid {
    grid-template-columns: 1fr 1fr;
  }
  .property-archive__layout {
    display: flex;
    flex-direction: column;
  }
  .property-archive__header {
    order: 1;
  }
  .property-archive__layout .sidebar-search {
    display: none;
  }
  .sidebar-search-sp {
    order: 2;
    margin-bottom: 20px;
  }
  .property-archive__main {
    order: 3;
  }
  .list-card {
    grid-template-columns: 1fr;
  }
  .list-card .property-archive__card-title-wrap {
    display: block;
    padding: 10px 12px 8px;
    border-bottom: 1px solid var(--stroke);
    min-width: 0;
    overflow: hidden;
  }
  .list-card .property-archive__card-visual {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
  }
  .list-card .card-media__inner {
    height: 120px;
  }
  .list-card .property-archive__card-specs--side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 8px 10px;
    border-top: none;
    min-width: 0;
  }
  .list-card .card-pad {
    padding: 8px 12px 10px;
  }
  .list-card .card-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .property-archive__card-title--pc {
    display: none;
  }
  .property-archive__card-spec--pc {
    display: none;
  }
  .property-archive__card-price {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .property-archive__card-specs {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 6px;
  }
  .property-archive__card-spec {
    font-size: 11px;
    padding: 2px 0;
  }
  .property-archive__card-spec--full {
    grid-column: 1/-1;
  }
  .property-archive__card-action .btn {
    font-size: 13px;
    padding: 8px 12px;
  }
}
@media (max-width: 767px) {
  /* Business Hero SP */
  .business-hero {
    padding: 28px 0 44px;
  }
  .business-hero::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 58%;
    border-radius: 0;
    opacity: 0.22;
  }
  .business-hero__inner {
    padding: 0;
  }
  .business-hero__body {
    margin-right: 0;
    max-width: none;
    padding: 24px 20px;
    border-radius: var(--r-lg);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }
  .business-hero__kicker {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }
  .business-hero__title {
    font-size: 24px;
    line-height: 1.45;
  }
  .business-hero__title-accent {
    margin-top: 6px;
    font-size: 0.82em;
  }
  .business-hero__lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.8;
  }
  /* Business Nav SP */
  .business-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: -22px;
  }
  .business-nav__card {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
    border-radius: var(--r-lg);
  }
  .business-nav__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
  .business-nav__icon img {
    width: 24px;
    height: 24px;
  }
  .business-nav__label {
    flex: 1;
    text-align: left;
    font-size: 14px;
    line-height: 1.35;
  }
  .business-nav__no {
    display: none;
  }
  .business-nav__arrow {
    margin-left: 0;
    font-size: 18px;
  }
  /* Business Sections SP */
  .business-section {
    padding: 44px 0;
  }
  .business-section__layout, .business-section__layout--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    direction: ltr;
  }
  .business-section__visual {
    position: static;
    top: auto;
  }
  .business-section__image {
    aspect-ratio: 16/10;
    border-radius: var(--r-lg);
  }
  .business-section__no {
    margin-bottom: 4px;
    font-size: 34px;
  }
  .business-section__title {
    font-size: 22px;
    line-height: 1.4;
  }
  .business-section__subtitle {
    margin-top: 6px;
    font-size: 13px;
  }
  .business-section__copy {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
  }
  .business-section__list {
    margin-top: 14px;
    gap: 8px;
  }
  .business-section__list li {
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.7;
  }
  .business-section__list li::before {
    top: 0.75em;
    width: 8px;
    height: 8px;
    box-shadow: inset 0 0 0 2px #f2b89d;
  }
  .business-section__actions {
    margin-top: 18px;
  }
  .business-section__actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Business Consult SP */
  .business-consult {
    margin-top: 22px;
    padding: 16px;
  }
  .business-consult__title {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .business-consult__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .business-consult__item {
    padding: 14px;
  }
  .business-consult__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }
  .business-consult__purpose {
    font-size: 14px;
  }
  .business-consult__desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.65;
  }
  /* Business CTA SP */
  .business-cta {
    padding: 52px 0;
  }
  .business-cta__title {
    font-size: 22px;
    line-height: 1.45;
  }
  .business-cta__copy {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .business-cta__actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn--cta-primary,
  .btn--cta-ghost {
    min-width: unset;
    width: 100%;
  }
  .page-header {
    height: 120px;
  }
  .page-header--showcase {
    height: auto;
    /* 上下に少しゆとりを持たせ、窮屈さを解消 */
    padding: 40px 0 30px;
    background: #fdfcf9;
  }
  .page-header--showcase .page-header__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .page-header--showcase .page-header__text {
    margin-right: 0;
    /* 画像への被りを少し浅くし、文字の背景を安定させる */
    margin-top: -20px;
    padding-left: 15px;
    z-index: 2;
  }
  .page-header--showcase .page-header__eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
    /* 文字間を広くして「デザインされた感」を出す */
    letter-spacing: 0.3em;
    opacity: 0.9;
  }
  .page-header--showcase .page-header__title {
    /* スマホでも大きすぎないサイズに微調整 */
    font-size: clamp(26px, 7vw, 32px);
    letter-spacing: 0.05em;
    /* 文字の縁を滑らかに */
    -webkit-font-smoothing: antialiased;
  }
  .page-header--showcase .page-header__image-wrapper {
    width: 100%;
    /* 高さを少し抑えることで、画像の主張を物理的に減らす */
    height: 180px;
    border-radius: 2px;
    position: relative;
    /* 画像に薄いベールを被せて背景に馴染ませる */
  }
  .page-header--showcase .page-header__image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(253, 252, 249, 0.2);
    z-index: 1;
  }
  .blog-index__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
  }
  .blog-index .h2 {
    width: 100%;
    line-height: 1.3;
  }
  .blog-index__filter {
    width: 100%;
    justify-content: flex-start;
    overflow: hidden;
    gap: 0;
  }
  .blog-index__filter-buttons {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .blog-index__filter-buttons::-webkit-scrollbar {
    display: none;
  }
  .blog-index__filter-btn {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }
  .contact-thanks__content {
    padding-inline: 0;
  }
  .contact-thanks__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }
  .contact-thanks__actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-thanks__actions .btn {
    width: 100%;
  }
  /* 代表挨拶：SPでは縦積み（タイトル・本文 → 画像の順） */
  .company-greeting {
    grid-template-columns: 1fr;
  }
  /* Company Outline Grid on SP */
  .company-outline__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Layout */
  .hero-grid,
  .l-layout {
    grid-template-columns: 1fr;
  }
  .l-grid--3col,
  .l-grid--4col,
  .l-grid--2col {
    grid-template-columns: 1fr;
  }
  /* Sections */
  .section {
    padding: 40px 0;
  }
  .sidebar {
    position: static;
  }
  .property-detail__gallery-main-wrap {
    padding-inline: 0;
  }
  .property-detail__gallery-nav {
    width: 25px;
    height: 25px;
    border-radius: 8px;
  }
  .property-detail__gallery-nav img {
    width: 24px;
    height: 24px;
  }
  .property-detail__gallery-nav--prev {
    left: -21px;
    border-radius: 0 8px 8px 0;
  }
  .property-detail__gallery-nav--next {
    right: -21px;
    border-radius: 8px 0 0 8px;
  }
  .property-detail__gallery-thumbs-wrap {
    display: none;
  }
  .property-detail__map-container {
    aspect-ratio: auto;
    height: 200px;
  }
  .page-detail #main {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
  .page-detail .section-head .section-actions {
    display: none;
  }
  .page-detail .property-detail__section-head {
    border-bottom: none;
    padding-bottom: 0;
  }
  .page-detail .property-detail__title {
    border-left: 4px solid var(--brand);
    padding: 4px 0 4px 12px;
    line-height: 1.4;
  }
  body.is-fixed-cta-page .footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
  .property-detail-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: block;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
  }
  .property-detail-fixed-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto;
  }
  .property-detail-fixed-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    line-height: 1.2;
    text-align: center;
  }
  .property-detail-fixed-cta__btn--form {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
  }
  .property-detail-fixed-cta__btn--tel {
    color: var(--brand-dark);
    background: #fff6f1;
    border-color: #f1d4c6;
  }
  .property-detail-fixed-cta__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .property-detail-fixed-cta__btn--form .property-detail-fixed-cta__icon {
    filter: brightness(0) saturate(100%) invert(100%);
  }
  .property-detail-fixed-cta__btn--tel .property-detail-fixed-cta__icon {
    filter: brightness(0) saturate(100%) invert(53%) sepia(79%) saturate(1861%) hue-rotate(343deg) brightness(97%) contrast(92%);
  }
  /* Utilities */
  .u-pc-only {
    display: none !important;
  }
  /* Hero MV SP (Revised) */
  .sp-search-section {
    display: block; /* Show search first */
  }
  .hero-mv {
    min-height: 60vh; /* 60% height */
    padding: 40px 0;
    background-image: url("./images/backgrounds/top-mv.jpg");
    margin-bottom: 0;
  }
  .hero-mv > .l-container {
    width: 100%;
  }
  .hero-mv-body {
    padding: 0;
  }
  .hero-mv-title {
    width: 100%;
    font-size: 32px;
    margin-bottom: 0;
  }
  .hero-mv-sub {
    font-size: 14px;
    margin-bottom: 12px;
  }
  /* SP Search Form Fix: Maintain 2 columns for Type/Price */
  .sp-search-section .l-grid--2col {
    grid-template-columns: 1fr 1fr;
  }
  /* Top Page Latest Properties: List Style on Mobile */
  .home-latest .card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
  }
  .home-latest .card .card-media {
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--stroke);
  }
  .home-latest .card .card-pad {
    padding: 12px;
  }
  .home-latest .card .card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .home-latest .card .kv {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    gap: 8px;
  }
  .home-latest .card .kv .price {
    font-size: 16px;
  }
  .home-latest .card .card-meta {
    display: none;
  }
  /* Footer */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px; /* Changed from 40px to 20px */
  }
  .footer-left {
    align-items: center;
    text-align: center;
  }
  .footer-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-sns .sp-nav-sns {
    justify-content: center !important;
  }
  .footlinks {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center; /* Override flex-start */
    /* border-top, padding-top, margin-top removed */
  }
  /* Typography */
  .h1 {
    font-size: 26px;
  }
  .h2 {
    font-size: 20px;
  }
  .hero-content {
    padding: 24px;
  }
}
@media (max-width: 409px) {
  .business-hero__nowrap {
    white-space: nowrap;
  }
}

/*# sourceMappingURL=style.css.map */
