/* ==========================================================
   top.css — レキオスハウジング トップページ専用スタイル
   prefix: rh- (Reikios Housing)
   Mobile-first / SWELL child theme
   ========================================================== */

/* ----------------------------------------------------------
   CSS カスタムプロパティ
   ---------------------------------------------------------- */
:root {
  --rh-ocean:       #0077b6;
  --rh-ocean-dark:  #023e8a;
  --rh-ocean-mid:   #0096c7;
  --rh-sky:         #00b4d8;
  --rh-sky-light:   #90e0ef;
  --rh-foam:        #caf0f8;
  --rh-sand:        #f5f0e8;
  --rh-sand-dark:   #e8dfc9;
  --rh-coral:       #e07a5f;
  --rh-sun:         #f4a522;
  --rh-sun-light:   #fbbf24;
  --rh-text:        #1a3a4c;
  --rh-text-mid:    #3d5a70;
  --rh-text-light:  #6b8fa3;
  --rh-white:       #ffffff;
  --rh-bg:          #f8fdff;
  --rh-border:      #d4eaf5;

  --rh-radius-sm:   6px;
  --rh-radius:      12px;
  --rh-radius-lg:   20px;
  --rh-radius-xl:   32px;

  --rh-shadow-sm:   0 2px 8px rgba(0,119,182,.10);
  --rh-shadow:      0 4px 20px rgba(0,119,182,.14);
  --rh-shadow-lg:   0 8px 40px rgba(0,119,182,.18);

  --rh-transition:  .25s ease;
  --rh-inner-max:   1100px;
  --rh-inner-px:    20px;
}

/* ----------------------------------------------------------
   ユーティリティ
   ---------------------------------------------------------- */
.rh-sp-only  { display: block; }
.rh-pc-only  { display: none; }

@media (min-width: 768px) {
  .rh-sp-only { display: none; }
  .rh-pc-only { display: block; }
}

/* ----------------------------------------------------------
   共通セクション構造
   ---------------------------------------------------------- */
.rh-section {
  padding: 64px 0;
  background: var(--rh-bg);
}

.rh-section--white {
  background: var(--rh-white);
}

.rh-section--sand {
  background: var(--rh-sand);
}

.rh-section-inner {
  max-width: var(--rh-inner-max);
  margin: 0 auto;
  padding: 0 var(--rh-inner-px);
}

.rh-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.rh-section-head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.rh-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--rh-ocean);
  background: rgba(0,119,182,.08);
  border: 1px solid rgba(0,119,182,.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 10px;
}

.rh-section-tag--white {
  color: var(--rh-white);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
}

.rh-section-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: var(--rh-text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.rh-section-lead {
  font-size: 15px;
  color: var(--rh-text-mid);
  margin: 0;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   共通ボタン
   ---------------------------------------------------------- */
.rh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--rh-transition), box-shadow var(--rh-transition), opacity var(--rh-transition);
  line-height: 1;
  white-space: nowrap;
}

.rh-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.rh-btn--primary {
  background: linear-gradient(135deg, var(--rh-ocean), var(--rh-ocean-dark));
  color: var(--rh-white);
  box-shadow: 0 4px 16px rgba(0,119,182,.35);
}

.rh-btn--secondary {
  background: rgba(255,255,255,.15);
  color: var(--rh-white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}

.rh-btn--outline-ocean {
  background: transparent;
  color: var(--rh-ocean);
  border: 2px solid var(--rh-ocean);
}

.rh-btn--outline-ocean:hover {
  background: var(--rh-ocean);
  color: var(--rh-white);
}

.rh-btn--tel {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: var(--rh-white);
  box-shadow: 0 4px 16px rgba(46,204,113,.35);
}

.rh-btn--assess {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--rh-sun), var(--rh-coral));
  color: var(--rh-white);
  box-shadow: 0 4px 20px rgba(244,165,34,.4);
  padding: 18px 32px;
  font-size: 18px;
  border-radius: var(--rh-radius);
  width: 100%;
}

.rh-btn--assess small {
  font-size: 12px;
  font-weight: 400;
  opacity: .85;
  margin-top: 4px;
}

.rh-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ----------------------------------------------------------
   ヒーローセクション
   ---------------------------------------------------------- */
.rh-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rh-ocean-dark) 0%, var(--rh-ocean) 50%, var(--rh-sky) 100%);
  padding: 80px 0 100px;
}

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

.rh-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.rh-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2,62,138,.78) 0%, rgba(0,119,182,.55) 60%, rgba(0,180,216,.3) 100%);
}

.rh-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--rh-inner-max);
  margin: 0 auto;
  padding: 0 var(--rh-inner-px);
}

.rh-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--rh-sky-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.rh-hero-title {
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 900;
  color: var(--rh-white);
  line-height: 1.2;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.rh-hero-title em {
  font-style: normal;
  color: var(--rh-sky-light);
}

.rh-hero-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: rgba(255,255,255,.88);
  margin: 0 0 32px;
  line-height: 1.7;
  max-width: 520px;
}

.rh-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.rh-hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rh-white);
}

.rh-hero-feature svg {
  color: var(--rh-sky-light);
  flex-shrink: 0;
}

.rh-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rh-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

@media (min-width: 768px) {
  .rh-hero {
    min-height: 680px;
    padding: 120px 0 140px;
  }
  .rh-hero-inner {
    max-width: 620px;
  }
}

/* ----------------------------------------------------------
   新築戸建てセクション
   ---------------------------------------------------------- */
.rh-new-houses {
  background: var(--rh-bg);
  padding: 72px 0;
}

.rh-prop-group {
  margin-bottom: 56px;
}

.rh-prop-group:last-child {
  margin-bottom: 0;
}

.rh-prop-group-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rh-border);
}

.rh-prop-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
}

.rh-prop-group-badge--price {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.rh-prop-group-badge--new {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.rh-prop-group-badge--recommend {
  background: #e3f2fd;
  color: var(--rh-ocean-dark);
  border: 1px solid var(--rh-sky-light);
}

.rh-prop-group-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--rh-text);
  margin: 0;
}

.rh-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .rh-prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .rh-prop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 物件カード */
.rh-prop-card {
  background: var(--rh-white);
  border-radius: var(--rh-radius);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
  transition: transform var(--rh-transition), box-shadow var(--rh-transition);
  text-decoration: none;
  color: var(--rh-text);
  display: flex;
  flex-direction: column;
}

.rh-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rh-shadow);
}

.rh-prop-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--rh-foam);
}

.rh-prop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.rh-prop-card:hover .rh-prop-thumb img {
  transform: scale(1.04);
}

.rh-prop-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
}

.rh-prop-badge--price-changed {
  background: #ff6b35;
  color: #fff;
}

.rh-prop-badge--new {
  background: #2ecc71;
  color: #fff;
}

.rh-prop-badge--recommended {
  background: var(--rh-ocean);
  color: #fff;
}

.rh-prop-free-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
}

.rh-prop-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rh-prop-city {
  font-size: 11px;
  color: var(--rh-ocean);
  font-weight: 600;
  letter-spacing: .04em;
}

.rh-prop-catch {
  font-size: 14px;
  font-weight: 700;
  color: var(--rh-text);
  line-height: 1.4;
  margin: 0;
}

.rh-prop-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--rh-ocean-dark);
  margin: 4px 0 0;
}

.rh-prop-price small {
  font-size: 13px;
  font-weight: 400;
}

.rh-prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.rh-prop-spec {
  font-size: 12px;
  color: var(--rh-text-mid);
  background: var(--rh-bg);
  border: 1px solid var(--rh-border);
  border-radius: var(--rh-radius-sm);
  padding: 3px 8px;
}

.rh-prop-fee-note {
  font-size: 11px;
  color: #2e7d32;
  font-weight: 600;
  background: #e8f5e9;
  border-radius: var(--rh-radius-sm);
  padding: 4px 10px;
  margin-top: auto;
}

.rh-new-houses-cta {
  margin-top: 40px;
  text-align: center;
}

/* ----------------------------------------------------------
   不動産売却 CTA セクション
   ---------------------------------------------------------- */
.rh-seller-cta {
  background: linear-gradient(135deg, var(--rh-ocean-dark) 0%, var(--rh-ocean) 55%, var(--rh-sky) 100%);
  padding: 72px 0;
}

.rh-seller-cta-inner {
  max-width: var(--rh-inner-max);
  margin: 0 auto;
  padding: 0 var(--rh-inner-px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 860px) {
  .rh-seller-cta-inner {
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 60px;
  }
}

.rh-seller-cta-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  color: var(--rh-white);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.rh-seller-cta-title em {
  font-style: normal;
  color: var(--rh-sky-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rh-seller-cta-lead {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin: 0 0 28px;
}

.rh-seller-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rh-seller-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rh-seller-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--rh-white);
  flex-shrink: 0;
}

.rh-seller-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rh-seller-step-body strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--rh-white);
}

.rh-seller-step-body span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

.rh-seller-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--rh-radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.rh-seller-card-lead {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0 0 8px;
  letter-spacing: .06em;
}

.rh-seller-card-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--rh-white);
  line-height: 1.3;
  margin: 0 0 24px;
}

.rh-seller-card-notes {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.rh-seller-card-notes li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.rh-seller-card-notes li svg {
  color: var(--rh-sky-light);
}

/* ----------------------------------------------------------
   購入者様向け ご案内希望日セクション
   ---------------------------------------------------------- */
.rh-buyer-res {
  background: var(--rh-white);
  padding: 72px 0;
}

.rh-buyer-res-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* 3ステップフロー */
.rh-res-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: flow-step;
}

@media (min-width: 640px) {
  .rh-res-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.rh-res-flow-step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--rh-border);
  position: relative;
}

@media (min-width: 640px) {
  .rh-res-flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: none;
    padding: 0 24px;
    border-right: 1px dashed var(--rh-border);
  }

  .rh-res-flow-step:last-child {
    border-right: none;
  }
}

.rh-res-flow-step:last-child {
  border-bottom: none;
}

.rh-res-flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rh-foam), #e8f8ff);
  border: 2px solid var(--rh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rh-ocean);
}

.rh-res-flow-body {
  flex: 1;
}

.rh-res-flow-num {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--rh-ocean);
  margin-bottom: 4px;
}

.rh-res-flow-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--rh-text);
  margin: 0 0 6px;
}

.rh-res-flow-body p {
  font-size: 13px;
  color: var(--rh-text-mid);
  margin: 0;
  line-height: 1.6;
}

/* CTAカード */
.rh-res-cta-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .rh-res-cta-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.rh-res-cta-card {
  background: linear-gradient(135deg, var(--rh-ocean-dark), var(--rh-ocean));
  border-radius: var(--rh-radius-lg);
  padding: 32px 28px;
  text-align: center;
  color: var(--rh-white);
}

.rh-res-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin: 0 0 16px;
}

.rh-res-cta-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 24px;
}

.rh-res-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rh-res-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 16px 0 0;
}

.rh-res-area-card {
  background: var(--rh-bg);
  border: 2px solid var(--rh-border);
  border-radius: var(--rh-radius-lg);
  padding: 28px 24px;
}

.rh-res-area-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--rh-text);
  margin: 0 0 16px;
}

.rh-res-area-title svg {
  color: var(--rh-ocean);
  flex-shrink: 0;
}

.rh-res-area-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rh-res-area-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--rh-text-mid);
  background: var(--rh-white);
  border: 1px solid var(--rh-border);
  border-radius: var(--rh-radius-sm);
  padding: 5px 12px;
}

.rh-res-area-note {
  font-size: 12px;
  color: var(--rh-text-light);
  margin: 0;
}

/* ----------------------------------------------------------
   お知らせセクション
   ---------------------------------------------------------- */
.rh-news {
  background: var(--rh-sand);
  padding: 72px 0;
}

.rh-news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rh-ocean);
  text-decoration: none;
  white-space: nowrap;
}

.rh-news-all-link:hover {
  opacity: .75;
}

.rh-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--rh-radius);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
}

.rh-news-item {
  background: var(--rh-white);
  border-bottom: 1px solid var(--rh-border);
}

.rh-news-item:last-child {
  border-bottom: none;
}

.rh-news-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--rh-text);
  transition: background var(--rh-transition);
  flex-wrap: wrap;
}

.rh-news-item-link:hover {
  background: var(--rh-bg);
}

.rh-news-date {
  font-size: 13px;
  color: var(--rh-text-light);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.rh-news-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.rh-news-cat--prop {
  background: #e3f2fd;
  color: var(--rh-ocean-dark);
}

.rh-news-cat--event {
  background: #fff3e0;
  color: #e65100;
}

.rh-news-cat--info {
  background: #f3e5f5;
  color: #6a1b9a;
}

.rh-news-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}

.rh-news-arrow {
  color: var(--rh-ocean);
  flex-shrink: 0;
  margin-left: auto;
}

/* ----------------------------------------------------------
   お客様の声セクション
   ---------------------------------------------------------- */
.rh-voice {
  background: var(--rh-bg);
  padding: 72px 0;
}

.rh-voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .rh-voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .rh-voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rh-voice-card {
  background: var(--rh-white);
  border-radius: var(--rh-radius);
  box-shadow: var(--rh-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--rh-transition), box-shadow var(--rh-transition);
}

.rh-voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rh-shadow);
}

.rh-voice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--rh-border);
  background: var(--rh-bg);
}

.rh-voice-stars {
  font-size: 16px;
  color: var(--rh-sun);
  letter-spacing: 2px;
}

.rh-voice-type {
  font-size: 11px;
  font-weight: 700;
  color: var(--rh-ocean);
  background: rgba(0,119,182,.08);
  border: 1px solid rgba(0,119,182,.18);
  border-radius: 100px;
  padding: 3px 10px;
}

.rh-voice-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rh-voice-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--rh-text-mid);
  margin: 0;
  flex: 1;
}

.rh-voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rh-border);
}

.rh-voice-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rh-foam);
  border: 2px solid var(--rh-border);
}

.rh-voice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rh-voice-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-text-light);
}

.rh-voice-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--rh-text);
  margin: 0 0 3px;
}

.rh-voice-detail {
  font-size: 12px;
  color: var(--rh-text-light);
  margin: 0;
}

.rh-voice-cta-wrap {
  margin-top: 36px;
  text-align: center;
}

/* ----------------------------------------------------------
   スタッフセクション
   ---------------------------------------------------------- */
.rh-staff {
  background: var(--rh-white);
  padding: 72px 0;
}

.rh-staff-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--rh-bg);
  border-radius: var(--rh-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--rh-border);
  box-shadow: var(--rh-shadow-sm);
}

@media (min-width: 768px) {
  .rh-staff-card {
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding: 40px 48px;
  }
}

.rh-staff-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rh-staff-photo {
  width: 200px;
  height: 240px;
  border-radius: var(--rh-radius);
  overflow: hidden;
  background: var(--rh-foam);
  border: 3px solid var(--rh-border);
  box-shadow: var(--rh-shadow);
}

@media (min-width: 768px) {
  .rh-staff-photo {
    width: 100%;
    height: 300px;
  }
}

.rh-staff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.rh-staff-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-text-light);
}

.rh-staff-quals-badge {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.rh-staff-qual {
  font-size: 10px;
  font-weight: 700;
  color: var(--rh-ocean-dark);
  background: rgba(0,119,182,.08);
  border: 1px solid rgba(0,119,182,.2);
  border-radius: var(--rh-radius-sm);
  padding: 4px 10px;
  white-space: nowrap;
}

.rh-staff-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.rh-staff-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--rh-ocean);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rh-staff-name {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  color: var(--rh-text);
  margin: 0;
}

.rh-staff-catch {
  font-size: 15px;
  font-weight: 600;
  color: var(--rh-ocean);
  margin: 0;
  line-height: 1.5;
}

.rh-staff-message {
  font-size: 14px;
  color: var(--rh-text-mid);
  line-height: 1.85;
  margin: 0;
}

.rh-staff-quals-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.rh-staff-quals-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rh-text-mid);
}

.rh-staff-quals-item svg {
  color: var(--rh-ocean);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   会社概要セクション
   ---------------------------------------------------------- */
.rh-company {
  background: var(--rh-sand);
  padding: 72px 0;
}

.rh-company-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .rh-company-body {
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
  }
}

.rh-company-table-wrap {
  background: var(--rh-white);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
  border: 1px solid var(--rh-border);
}

.rh-company-table {
  width: 100%;
  border-collapse: collapse;
}

.rh-company-table th,
.rh-company-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--rh-border);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.rh-company-table tr:last-child th,
.rh-company-table tr:last-child td {
  border-bottom: none;
}

.rh-company-table th {
  width: 120px;
  background: var(--rh-bg);
  color: var(--rh-text-mid);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.rh-company-table td {
  color: var(--rh-text);
}

.rh-company-name-en {
  display: block;
  font-size: 11px;
  color: var(--rh-text-light);
  margin-top: 3px;
}

.rh-company-address {
  font-style: normal;
}

.rh-company-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--rh-ocean);
  text-decoration: none;
  margin-top: 4px;
  font-weight: 600;
}

.rh-company-map-link:hover {
  opacity: .75;
}

.rh-company-tel {
  color: var(--rh-ocean-dark);
  text-decoration: none;
  font-weight: 700;
}

.rh-company-tel:hover {
  text-decoration: underline;
}

.rh-company-table td a {
  color: var(--rh-ocean);
  text-decoration: none;
}

.rh-company-table td a:hover {
  text-decoration: underline;
}

.rh-company-cta {
  padding: 20px;
  text-align: center;
  border-top: 1px solid var(--rh-border);
  background: var(--rh-bg);
}

.rh-company-map {
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  box-shadow: var(--rh-shadow-sm);
  border: 1px solid var(--rh-border);
  line-height: 0;
}

.rh-company-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 900px) {
  .rh-company-map iframe {
    height: 480px;
  }
}

/* ----------------------------------------------------------
   レスポンシブ補足
   ---------------------------------------------------------- */
@media (min-width: 768px) {
  .rh-section {
    padding: 96px 0;
  }

  .rh-section-head {
    margin-bottom: 56px;
  }

  .rh-staff-quals-badge {
    justify-content: flex-start;
  }

  .rh-res-cta-btns {
    flex-direction: row;
    justify-content: center;
  }

  .rh-buyer-res-body {
    gap: 64px;
  }
}

@media (min-width: 1100px) {
  :root {
    --rh-inner-px: 40px;
  }
}

/* ----------------------------------------------------------
   アニメーション・アクセシビリティ
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* フォーカスリング（キーボード操作） */
.rh-btn:focus-visible,
.rh-prop-card:focus-visible,
.rh-news-item-link:focus-visible {
  outline: 3px solid var(--rh-sun);
  outline-offset: 3px;
}
