/*
  HOT LIFE 新サイト初稿 — 共通スタイル
  参照: Sunstar「Smile Scan」の構造原則（余白のリズム・情報の見せ方）を基準に、
  配色（白・オレンジ・黒）と内容はホットライフ案件正本に合わせて新規実装。
  コード・画像は参照サイトから一切流用していない。
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Parisienne&display=swap');

:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --ink: #1a1a1a;
  --muted: #63605c;
  --line: #e7e2db;
  --accent: #f26802;
  --accent-dark: #c95400;
  --soft: #fdf1e6;
  --soft-line: #f3d9c2;
  --focus: #1a1a1a;

  --font-heading: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;

  --container: 1120px;
  --header-gap: 22px;
  --header-h: 68px;
  --header-gap: 22px;
  --header-h: 68px;
  --section-pad-y: clamp(56px, 8vw, 104px);
  --radius: 16px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  body {
    transition: opacity .16s ease;
  }
  body.is-leaving { opacity: 0; }
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: var(--header-gap) clamp(16px, 4vw, 48px) 0;
  background: transparent;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  pointer-events: auto;
  max-width: 1300px;
  margin-inline: auto;
  padding: 0 12px 0 32px;
  height: var(--header-h);
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(26, 26, 26, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 899px) {
  :root { --header-gap: 14px; --header-h: 58px; }
  .site-header { padding-inline: 14px; }
  .site-header__inner { padding: 0 10px 0 20px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.brand__mark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .brand__sub { display: none; }
}

.brand__text {
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--accent);
}

.brand__logo {
  display: block;
  width: auto;
  height: 26px;
}

@media (max-width: 899px) {
  .brand__logo { height: 22px; }
}


.nav-primary {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-primary__list {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-primary .nav-primary__cta {
  display: none;
}

.nav-primary__list a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
}

.nav-primary__list a[aria-current="page"] { color: var(--accent); }

.nav-primary__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-primary__list a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border: 2px solid var(--accent);
  background: #fff;
  color: var(--accent);
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.btn:hover { transform: translateY(-1px); background: var(--accent); color: #fff; }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn--ink {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.btn--ink:hover { background: var(--ink); color: #fff; }

.header-cta {
  display: none;
  min-width: 220px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  padding: 11px 24px;
  font-size: 13.5px;
  line-height: 1;
}

.header-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

@media (min-width: 900px) {
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  position: relative;
  border: none;
  border-radius: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 0;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s cubic-bezier(.18, -.01, .3, 1), opacity .3s cubic-bezier(.18, -.01, .3, 1);
}

.nav-toggle span:nth-child(1) { transform: translate(-50%, -50%) translateY(-8px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, -50%) translateY(8px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-toggle:focus { outline: none; }
.nav-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: 50%; }

@media (min-width: 900px) {
  .nav-primary { display: flex !important; }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s ease, visibility 0s linear .32s;
  z-index: 38;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .32s ease;
}

@media (min-width: 900px) {
  .nav-overlay { display: none; }
}

@media (max-width: 899px) {
  .nav-primary {
    display: flex;
    position: fixed;
    top: calc(var(--header-gap) + var(--header-h) + 10px);
    right: 0;
    bottom: 0;
    left: 44px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 28px;
    overflow-y: auto;
    z-index: 39;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.18, -.01, .3, 1), visibility 0s linear .32s;
  }
  .nav-primary.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .32s cubic-bezier(.18, -.01, .3, 1), visibility 0s;
  }
  .nav-primary__list {
    flex-direction: column;
    gap: 0;
    font-size: 17px;
  }
  .nav-primary__list a {
    display: block;
    padding: 16px 4px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-primary__list a::after { content: none; }
  .nav-primary__list a[aria-current="page"] {
    border-color: var(--accent);
  }
  .nav-primary .nav-primary__cta { display: inline-flex; margin-top: 18px; width: 100%; }
}

/* ---------- セクション共通 ---------- */

.section {
  padding-block: var(--section-pad-y);
  border-bottom: 1px solid var(--line);
}

.section--tight { padding-block: clamp(40px, 6vw, 64px); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
}

.section-foot {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  justify-content: center;
}

/* ---------- ヒーロー ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 46vw, 720px);
  margin-top: calc(-1 * (var(--header-gap) + var(--header-h)));
  overflow: hidden;
  background: #dbe6ee;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  z-index: 0;
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(20px, 8vw, 140px);
  padding-right: clamp(20px, 6vw, 80px);
  /* PCではヘッダーとの重なりを考慮し、コピーをわずかに下へ。 */
  transform: translateY(clamp(24px, 2vw, 36px));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border-radius: 3px;
  background: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--accent);
}

.hero__eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.hero__title {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.3;
}

.hero__band {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 3px;
  background: #fff;
  font-size: clamp(22px, 3.1vw, 44px);
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--ink);
}

.hero__band em {
  font-style: normal;
  color: var(--accent);
}

.hero__lede {
  margin-top: 20px;
  max-width: 30em;
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  line-height: 2.5;
  color: var(--muted);
}

.hero__lede-text {
  padding: 5px 14px;
  border-radius: 3px;
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.nowrap { white-space: nowrap; }

.hero__actions {
  margin-top: clamp(24px, 2.8vw, 34px);
}

.hero__cta {
  min-width: 240px;
  padding: 14px 30px;
  font-size: 14.5px;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(52px, 7vw, 104px);
}

@media (max-width: 899px) {
  .hero {
    min-height: clamp(600px, 172vw, 720px);
  }

  .hero__photo { object-position: 52% 50%; }

  .hero__inner {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    /* スマホではヒーロー領域の中央に収める。 */
    transform: none;
  }

  .hero__title { gap: 8px; }

  .hero__band { padding: 8px 14px; }

  .hero__lede {
    max-width: 100%;
    line-height: 2.2;
  }
}

/* ---------- 特徴ブロック（グリッド） ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.feature:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(242, 104, 2, 0.1);
  transform: translateY(-2px);
}

.feature__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #ffffff, var(--soft));
  display: grid;
  place-items: center;
}

.feature__media img { width: 100%; height: 100%; object-fit: cover; }

.feature__icon {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.feature__body { padding: 22px 24px 26px; }

.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  font-size: 17px;
}

/* ---------- STEP フロー（縦の連結タイムライン） ---------- */

.step-flow {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: clamp(88px, 10vw, 104px);
}

.step-flow::before {
  content: "";
  position: absolute;
  left: clamp(32px, 4vw, 40px);
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: var(--soft-line);
}

.step {
  position: relative;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child { border-bottom: none; padding-bottom: 0; }
.step:first-child { padding-top: 0; }

.step__num {
  position: absolute;
  left: clamp(-104px, -10vw, -88px);
  top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 6vw, 80px);
  height: clamp(64px, 6vw, 80px);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.step:first-child .step__num { top: 0; }

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- カード（新着情報） ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .card-grid {
    display: flex;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    margin-inline: -24px;
    padding-inline: 24px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .card-grid::-webkit-scrollbar { display: none; }
  .card-grid .card {
    flex: 0 0 75vw;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .card-grid {
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(242, 104, 2, 0.12);
  transform: translateY(-2px);
}

.card:hover .card__cta {
  background: #fff;
  color: var(--accent);
}

.card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(150deg, #ffffff, var(--soft));
  display: grid;
  place-items: center;
  color: var(--accent);
}

.card__thumb svg { width: 26%; height: 26%; opacity: .5; }

.card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__text { flex: 1; }

.card__meta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 16px; }

.card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 16px auto 0;
  padding: 9px 20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  transition: background-color .15s ease, color .15s ease;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head-row .section-head { margin-bottom: 0; }

@media (max-width: 640px) {
  .section-head-row { align-items: flex-start; }
}

.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.chip-link:hover {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.chip-link svg { width: 14px; height: 14px; }

/* ---------- 一覧（新着情報ページ） ---------- */

.list-row {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: opacity .15s ease;
}

.list-row:hover { opacity: .72; }
.list-row:hover .list-row__arrow { transform: translateX(3px); }
.list-row__arrow { transition: transform .15s ease; }

@media (max-width: 640px) {
  .list-row { grid-template-columns: 84px 1fr; }
  .list-row__arrow { display: none; }
}

.list-row__thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--soft), #ffffff);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.list-row__thumb svg { width: 30%; height: 30%; opacity: .5; }

.list-row__arrow {
  color: var(--accent);
  font-size: 20px;
}

/* ---------- 空状態 ---------- */

.empty-state {
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.empty-state strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 8px;
}

/* ---------- 年表（過去の事例） ---------- */

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.timeline-year {
  position: relative;
  margin-bottom: 40px;
}

.timeline-year:last-child { margin-bottom: 0; }

.timeline-year::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.case-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.case-item + .case-item { margin-top: 16px; }

.case-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(242, 104, 2, .10);
  transform: translateY(-2px);
}

.case-item:hover .case-item__action { color: var(--accent-dark); }

@media (max-width: 640px) {
  .case-item { grid-template-columns: 1fr; gap: 16px; padding: 12px; }
}

.case-item__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.case-item__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-item__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent);
  margin-bottom: 8px;
}

.case-item h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}

.case-item p {
  color: var(--muted);
  font-size: 16.5px;
}

.case-item__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
  transition: color .15s ease;
}

.case-item__action span { transition: transform .15s ease; }
.case-item:hover .case-item__action span { transform: translateX(4px); }

/* ---------- 会社概要／お問い合わせ ---------- */

.info-table {
  border-top: 1px solid var(--line);
}

.info-table--wide {
  max-width: 720px;
}

.info-table__row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

@media (max-width: 480px) {
  .info-table__row { grid-template-columns: 1fr; gap: 4px; }
}

.info-table__row dt {
  color: var(--muted);
  font-weight: 500;
}

.info-table__row dd {
  margin: 0;
}

.pending {
  color: var(--muted);
  font-style: normal;
}

dd .pending {
  display: inline-block;
  margin-left: 6px;
  font-size: 12.5px;
}

.form-grid--narrow {
  max-width: 560px;
}

.info-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 物件詳細ページ ---------- */

.property-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.property-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, #ffffff, var(--soft));
  display: grid;
  place-items: center;
  color: var(--accent);
}

.property-photo img { width: 100%; height: 100%; object-fit: cover; }
.property-photo--empty svg { width: 26%; height: 26%; opacity: .5; }

.property-body {
  max-width: 42em;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}

.section-more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 20px;
  font-size: 14.5px;
}

.section-more-links a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--soft-line);
}

.section-more-links a:hover { border-color: var(--accent); }

.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 6px;
}

.field .req {
  color: var(--accent);
  margin-left: 4px;
  font-size: 12px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.field textarea { min-height: 120px; resize: vertical; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2363605c' stroke-width='2'%3E%3Cpath d='M5 7l5 6 5-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.field--group {
  border: none;
  padding: 0;
  margin: 0;
}

.field--group legend {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0;
}

.field-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.field-note--box {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.address-grid input:first-child { grid-column: 1 / -1; max-width: 220px; }

@media (max-width: 480px) {
  .address-grid { grid-template-columns: 1fr; }
  .address-grid input:first-child { max-width: none; }
}

.check-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--ink);
}

.check-inline input { width: auto; }

.check-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.check-col {
  display: grid;
  gap: 12px;
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

.field--check input { width: auto; margin-top: 4px; }

.form-submit {
  width: 100%;
  max-width: 420px;
  border: none;
  cursor: pointer;
}

.form-success {
  border: 1px solid var(--soft-line);
  background: var(--soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14.5px;
}

.form-error {
  border: 1px solid #f3c2c2;
  background: #fdecec;
  color: #9a2b2b;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14.5px;
}

/* お問い合わせフォームのハニーポット（スパム対策）。人の目には見えない位置に隠す。 */
.hlp-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- ページタイトル帯 ---------- */

.page-title {
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-top: 8px;
}

.page-title p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 42em;
}

/* ---------- パンくず ---------- */

.crumb {
  font-size: 13px;
  color: var(--muted);
}

.crumb a { border-bottom: 1px solid var(--line); }

/* ---------- フッター ---------- */

.site-footer {
  background: var(--accent);
  color: #fff;
  padding-block: 56px 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-brand__logo {
  display: block;
  width: auto;
  height: 38px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(150px, .8fr);
  gap: 40px;
  padding-block: 36px 44px;
}

.footer-nav__title {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.footer-nav__group ul {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.footer-nav__group a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, .88);
  transition: color .15s ease, transform .15s ease;
}

.footer-nav__group a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-meta {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
}

@media (max-width: 700px) {
  .site-footer { padding-block: 40px 22px; }
  .footer-brand { align-items: flex-start; gap: 14px; padding-bottom: 24px; }
  .footer-brand__logo { height: 32px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-block: 30px 36px; }
  .footer-meta { justify-content: flex-start; }
}

/* ---------- スクロール表示アニメーション ---------- */

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---------- スキップリンク ---------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---------- 物件情報の拡大表示（ポップアップ） ---------- */


/* WordPressテーマ（Twenty Twenty-Five）既定の見た目を打ち消す。
   本プラグインの各ページは、テーマのヘッダー・フッター・タイトルではなく、
   [hotlife_header] / [hotlife_footer] ショートコードと本CSSで表示する。 */
body.wp-theme-twentytwentyfive .wp-site-blocks > header.wp-block-template-part,
body.wp-theme-twentytwentyfive .wp-site-blocks > footer.wp-block-template-part,
body.wp-theme-twentytwentyfive .wp-block-post-title { display: none !important; }
body.wp-theme-twentytwentyfive .wp-site-blocks > main { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.wp-theme-twentytwentyfive .wp-site-blocks > main > .wp-block-group { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.wp-theme-twentytwentyfive .entry-content { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.wp-theme-twentytwentyfive .entry-content.is-layout-constrained > * {
  max-width: none !important;
  margin: 0 !important;
}

/* Classic-style header/footer wrapper output by get_header()/get_footer() for the CPT single template (id=header / id=footer). Hide it too. */
body.wp-theme-twentytwentyfive #header,
body.wp-theme-twentytwentyfive #footer { display: none !important; }
