/*
Theme Name: Shining Real Estate
Theme URI:
Author: Shining Real Estate
Author URI:
Description: シャイニング不動産のオリジナルWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: shining-realestate
*/

/* ─── Reset & Base ─── */
:root {
  --primary: #111111;
  --secondary: #333333;
  --accent: #111111;
  --accent-light: rgba(0,0,0,0.07);
  --bg: #f2f2f2;
  --white: #fff;
  --text: #1a1a1a;
  --muted: #000000;
  --light: #aaaaaa;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: YakuHanJP, "游ゴシック", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif; -webkit-font-smoothing: antialiased; color: var(--text); background: var(--white); line-height: 1.8; font-size: 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ─── Typography ─── */
.font-mincho { font-family: YakuHanJP, "游ゴシック", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif; }
.font-hand { font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN", serif; font-weight: 600; }

/* ─── Navigation ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 28px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: #fff;
  backdrop-filter: blur(10px);
  padding: 10px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.nav-logo-ja { font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif; font-size: 20px; font-weight: 700; color: #1a1a1a; letter-spacing: 3px; line-height: 1.2; }
.nav-logo-en { font-size: 8px; letter-spacing: 2.5px; color: rgba(26,26,26,0.4); text-transform: uppercase; line-height: 1; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { color: rgba(0,0,0,0.7); font-size: 17px; letter-spacing: 0.5px; transition: color 0.3s; display: flex; flex-direction: row; align-items: center; gap: 8px; padding: 6px 16px; border-left: 1px solid rgba(0,0,0,0.12); }
.nav-links a:first-child { border-left: none; }
.nav-links a i { font-size: 21px; }
.nav-links a:hover { color: var(--accent); }

.nav-line-btn {
  display: flex; align-items: center; gap: 7px;
  background: #06C755; color: #fff;
  font-size: 17px; font-weight: 600; letter-spacing: 0.5px;
  padding: 8px 20px; border-radius: 9999px;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-line-btn i { font-size: 18px; }
.nav-line-btn:hover { background: #05b34c; color: #fff; }

.nav-sns { display: none; align-items: center; gap: 16px; margin-left: auto; margin-right: 14px; }
.nav-sns-icon { font-size: 19px; color: #1a1a1a; transition: opacity 0.2s; line-height: 1; display: flex; align-items: center; }
.nav-sns-icon:hover { opacity: 0.6; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #1a1a1a; flex-direction: column; z-index: 200; overflow-y: auto;
  transform: translateY(-100%); opacity: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.nav-mobile.open { transform: translateY(0); visibility: visible; }
.nav-mobile.closing { transform: translateY(0); opacity: 0; transition: opacity 0.3s ease; }

/* ヘッダー */
.nav-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile-logo { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.nav-mobile-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 12px; letter-spacing: 2px; cursor: pointer; display: flex; align-items: center; gap: 6px;
}
.nav-mobile-close i { font-size: 21px; }

/* CTAボックス */
.nav-mobile-cta { display: flex; flex-direction: column; gap: 8px; padding: 16px 14px 0; }
.nav-mobile-cta-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 13px 20px;
  color: #fff; font-size: 18px; font-weight: 500; transition: background 0.2s;
}
.nav-mobile-cta-item i { font-size: 18px; color: rgba(255,255,255,0.7); width: 24px; text-align: center; }
.nav-mobile-cta-item:hover { background: rgba(255,255,255,0.12); }

/* SNSアイコン */
.nav-mobile-sns {
  display: flex; gap: 12px; padding: 16px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile-sns-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.nav-mobile-sns-icon:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* 通常ナビ */
.nav-mobile-links { display: flex; flex-direction: column; padding: 0 0 8px; }
.nav-mobile-links a {
  color: rgba(255,255,255,0.8); font-size: 18px; font-weight: 400;
  padding: 13px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block; transition: color 0.3s;
}
.nav-mobile-links a:first-child { border-top: none; }
.nav-mobile-links a:hover { color: #fff; }

/* 2カラムナビ */
.nav-mobile-links.nav-mobile-links--grid {
  display: grid; grid-template-columns: 1fr 1fr; padding-bottom: 20px;
}
.nav-mobile-links.nav-mobile-links--grid a {
  font-size: 15px; padding: 12px 20px;
  border: none;
}
.nav-mobile-links.nav-mobile-links--grid a:first-child { border: none; }

/* ─── Hero ─── */
.hero { position: relative; height: 660px; min-height: 660px; overflow: hidden; background: #fff; }
.hero-track {
  display: flex; height: 100%;
  gap: 48px;
}
.hero-slide {
  flex: 0 0 82%; height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 0 60px 60px calc(9vw + 40px); color: #fff;
}
.hero-title {
  font-size: clamp(28px,4vw,58px); font-weight: 600; line-height: 1.8;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(16px);
}
.hero-nav { position: absolute; bottom: 36px; right: calc(9vw + 24px); display: flex; align-items: center; gap: 16px; z-index: 3; }
.hero-prev, .hero-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.7); }
.hero-dots { display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.4s; }
.hero-dot.active { width: 32px; background: #fff; }
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: auto;
  }
  .hero-content {
    position: static;
    inset: auto;
    background: transparent;
    padding: 98px 28px 40px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 20px;
    text-shadow: none;
    color: #1a1a1a;
    line-height: 1.8;
  }
  .hero-track {
    height: 72svh;
    gap: 12px;
  }
  .hero-slide {
    flex: 0 0 85%;
  }
  .hero-slide-bg {
    will-change: transform;
    animation: hero-pan-left 6s linear infinite alternate;
    z-index: 0;
  }
  .hero-slide::after { background: rgba(0, 0, 0, 0.2); z-index: 1; }
  .hero-nav { display: none; }
}

@keyframes hero-pan-left {
  0%   { transform: scale(1.08) translateX(4%); }
  100% { transform: scale(1.08) translateX(-4%); }
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block; padding: 16px 52px;
  background: var(--accent); color: #fff; border-radius: 60px;
  font-size: 18px; font-weight: 600;
  letter-spacing: 3px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.btn-more {
  display: inline-block; padding: 14px 48px;
  background: transparent; color: var(--accent); border: 2px solid var(--accent); border-radius: 60px;
  font-size: 18px; font-weight: 600;
  letter-spacing: 2px;
  transition: background 0.3s, color 0.3s;
}
.btn-more:hover { background: var(--accent); color: #fff; }

/* ─── Section Common ─── */
.section { padding: 100px 24px; }
.section--bg { background: #fff; }
.section--dark { background: var(--primary); color: #fff; }
.section--white { background: var(--white); }
.section-label { text-align: center; margin-bottom: 48px; }
.section-label .en { font-size: 11px; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.section-label h2 { font-size: clamp(24px,4.5vw,34px); font-weight: 600; color: var(--primary); line-height: 1.5; }
.section--dark .section-label h2 { color: #fff; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner--narrow { max-width: 800px; margin: 0 auto; }
.section-inner--mid { max-width: 1000px; margin: 0 auto; }

/* ─── Rent Story ─── */
.rent-story { background: #fff; padding: 96px 40px; }
.rent-story-inner { max-width: 760px; margin: 0 auto; }
.rent-story-lead { font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.8; color: var(--text); margin-bottom: 48px; text-align: center; }
.rent-story-body p { font-size: 18px; color: var(--muted); line-height: 2.4; margin-bottom: 24px; }
.rent-story-body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .rent-story { padding: 64px 24px; }
  .rent-story-lead { font-size: 20px; }
  .rent-story-body p { font-size: 16px; }
}

/* ─── Features Circle ─── */
.features-circle-section { background: #fff; padding: 88px 40px; }
.features-circle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 960px; margin: 0 auto; }
.features-circle-item { display: flex; flex-direction: column; align-items: center; text-align: center; }

.features-circle-img { position: relative; width: 240px; height: 240px; border-radius: 50%; margin-bottom: 0; }
.features-circle-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }

.features-circle-body { padding-top: 20px; }
.features-circle-num {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  font-size: 52px; font-weight: 600;
  color: var(--primary); line-height: 1; margin: 0; opacity: 0.85;
  z-index: 1;
}
.features-circle-title { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 14px; line-height: 1.6; }
.features-circle-text { font-size: 17px; color: var(--muted); line-height: 1.9; }

@media (max-width: 768px) {
  .features-circle-grid { grid-template-columns: 1fr; gap: 56px; padding: 0; }
  .features-circle-img { width: 200px; height: 200px; }
  .features-circle-section { padding: 72px 24px; }
}

/* ─── Service Index ─── */
.svc-index { background: var(--bg); }
.svc-index-label { text-align: center; padding: 64px 24px 64px; }
.svc-index-label .en { font-size: 11px; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.svc-index-label h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 600; color: var(--primary); }

.svc-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 460px); max-width: 1200px; margin: 0 auto; gap: 3px; padding: 0 40px 80px; }
.svc-index-card { position: relative; overflow: hidden; display: block; border-radius: 4px; }
.svc-index-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.svc-index-card:hover img { transform: scale(1.06); }
.svc-index-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 44px; transition: background 0.4s; }
.svc-index-card:hover .svc-index-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.05) 100%); }
.svc-index-en { font-size: 10px; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.svc-index-title { font-size: clamp(28px, 3vw, 36px); font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.svc-index-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.9; margin-bottom: 22px; }
.svc-index-link { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 12px; letter-spacing: 2px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.35); transition: color 0.3s, border-color 0.3s; }
.svc-index-card:hover .svc-index-link { color: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) {
  .svc-index-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 320px); padding: 0 16px 56px; }
  .svc-index-overlay { padding: 28px 28px; }
}

/* ─── Property Pages ─── */
.prop-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.prop-intro p { font-size: 20px; color: var(--muted); line-height: 2.1; }

.prop-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.prop-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.prop-card img { width: 100%; display: block; }
.prop-card-body { padding: 20px 22px 24px; }
.prop-card-body h3 { font-size: 21px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.prop-card-body p { font-size: 17px; color: var(--muted); line-height: 1.9; }

.prop-step-list { display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 0 auto; }
.prop-step { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.prop-step:nth-child(even) { direction: rtl; }
.prop-step:nth-child(even) > * { direction: ltr; }
.prop-step img { width: 100%; border-radius: 12px; display: block; }
.prop-step-body { }
.prop-step-num { font-size: 42px; font-weight: 600; color: var(--accent); opacity: 0.7; line-height: 1; display: block; margin-bottom: 8px; }
.prop-step-body h3 { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.prop-step-body p { font-size: 18px; color: var(--muted); line-height: 2; }

@media (max-width: 768px) {
  .prop-card-grid { grid-template-columns: 1fr; }
  .prop-step { grid-template-columns: 1fr; }
  .prop-step:nth-child(even) { direction: ltr; }
}

/* ─── Gallery ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.gallery-item { position: relative; padding-bottom: 66%; overflow: hidden; border-radius: 10px; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-note { text-align: center; font-size: 18px; color: var(--muted); margin-top: -32px; margin-bottom: 40px; line-height: 1.8; }

/* ─── Service ─── */
.service-list { display: flex; flex-direction: column; gap: 80px; }
.service-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.service-row.reverse { grid-template-columns: 1fr 1.1fr; }
.service-row.reverse .service-img { order: 1; }
.service-row.reverse .service-txt { order: 0; }
.service-img img { border-radius: 16px; box-shadow: 0 8px 36px rgba(0,0,0,0.1); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.service-txt h3 { font-size: clamp(20px,3vw,26px); font-weight: 600; color: var(--primary); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--accent); }
.service-txt p { font-size: 20px; color: var(--muted); line-height: 2.1; margin-bottom: 20px; }
.service-points { display: flex; flex-direction: column; gap: 10px; }
.service-point { display: flex; align-items: flex-start; gap: 10px; }
.service-point i { color: var(--accent); font-size: 17px; line-height: 24px; flex-shrink: 0; }
.service-point span { font-size: 17px; color: var(--text); line-height: 1.8; }

/* ─── Flow ─── */
.flow-list { max-width: 640px; margin: 0 auto; }
.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  border: 2px solid #222;
  border-radius: 16px;
  padding: 32px 36px;
  background: #fff;
}
.flow-img { position: relative; }
.flow-img img { border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.flow-num { position: absolute; top: -14px; left: -10px; font-size: 52px; font-weight: 700; color: var(--accent); opacity: 0.9; line-height: 1; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.flow-num-badge {
  width: 48px; height: 48px;
  border: 2px solid #222;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--text);
  flex-shrink: 0;
  margin-top: 2px;
}
.flow-txt h3 { font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.flow-txt p { font-size: 17px; color: var(--muted); line-height: 2; }
.flow-connector { display: flex; justify-content: center; padding: 4px 0; }
.flow-connector-line { width: 2px; height: 32px; background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.08)); border-radius: 1px; }

/* ─── Greeting ─── */
.greeting-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 44px 40px 36px;
  position: relative;
}
/* 左下・右下の角括弧装飾 */
.greeting-card::before,
.greeting-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  width: 22px; height: 22px;
}
.greeting-card::before {
  left: -2px;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}
.greeting-card::after {
  right: -2px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}
.greeting-main { display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: start; }
.greeting-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; display: block; }
.greeting-content { display: flex; flex-direction: column; }
.greeting-role { font-size: 12px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.greeting-name { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: 3px; margin-bottom: 22px; line-height: 1.4; }
.greeting-body { font-size: 18px; color: var(--muted); line-height: 2.2; }
.greeting-body p { margin-bottom: 14px; }
.greeting-body p:last-child { margin-bottom: 0; }
/* 下部ライン＋英字名 */
.greeting-foot { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.greeting-foot::before { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.15); }
.greeting-en-name { font-size: 17px; letter-spacing: 3px; color: rgba(0,0,0,0.4); white-space: nowrap; }

/* ─── Story ─── */
.story-section {
  background: #fff;
  padding: 88px 0 88px 40px;
  overflow: hidden;
}
.story-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}
/* カルーセル（無限横スクロール） */
@keyframes story-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.story-carousel-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.story-carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: story-scroll 30s linear infinite;
}
.story-carousel-track img {
  width: 280px; height: 280px;
  object-fit: cover; flex-shrink: 0;
  display: block; border-radius: 2px;
}
.story-carousel-wrap:hover .story-carousel-track {
  animation-play-state: paused;
}
/* 縦書きテキスト */
.story-texts {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-items: flex-start;
  padding-right: 48px;
}
.story-body-v {
  writing-mode: vertical-rl;
  font-size: 17px; color: var(--muted);
  line-height: 2.4; max-height: 400px;
  overflow: hidden;
}
.story-heading-v {
  writing-mode: vertical-rl;
  font-size: clamp(26px, 3vw, 44px); font-weight: 700;
  line-height: 1.6; color: var(--text);
  letter-spacing: 6px;
}

@media (max-width: 768px) {
  .story-section { padding: 64px 0 64px 24px; }
  .story-grid { flex-direction: column; gap: 32px; align-items: flex-start; }
  .story-carousel-track img { width: 220px; height: 220px; }
  .story-texts { padding-right: 24px; gap: 16px; }
  .story-body-v { max-height: 260px; font-size: 12px; }
  .story-heading-v { font-size: clamp(22px, 6vw, 32px); }
}

/* ─── News ─── */
.news-list { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.news-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--text); transition: opacity 0.3s;
}
.news-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.news-item:hover { opacity: 0.6; }
.news-date { font-size: 12px; color: var(--muted); white-space: nowrap; letter-spacing: 1px; min-width: 80px; }
.news-tag { font-size: 10px; background: var(--text); color: #fff; padding: 3px 10px; border-radius: 20px; font-weight: 500; white-space: nowrap; }
.news-title { font-size: 18px; flex: 1; line-height: 1.6; }
.news-arrow { font-size: 11px; color: var(--muted); flex-shrink: 0; }

@media (max-width: 768px) {
  .news-item { flex-wrap: wrap; gap: 8px 12px; }
  .news-title { width: 100%; order: 3; }
  .news-arrow { display: none; }
}

/* ─── Blog ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card {
  border-radius: 14px; overflow: hidden; background: var(--bg); cursor: pointer;
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 18px 22px 22px; }
.blog-card-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.blog-card-tag { font-size: 10px; background: var(--secondary); color: #fff; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.blog-card-date { font-size: 11px; color: var(--light); }
.blog-card-title { font-size: 21px; font-weight: 600; color: var(--primary); line-height: 1.6; }

/* ─── CTA ─── */
.cta { position: relative; padding: 100px 24px; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.82); }
.cta-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.cta h2 { font-size: clamp(22px,4.5vw,36px); font-weight: 600; margin-bottom: 20px; line-height: 1.6; }
.cta p { font-size: 20px; opacity: 0.8; margin-bottom: 40px; line-height: 1.9; font-weight: 300; }

/* ─── Contact ─── */
.contact-section { background: var(--bg); }

/* 上段 */
.contact-top { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.contact-top-text { padding: 72px 60px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-sub-label { font-size: 11px; color: var(--muted); margin-bottom: 10px; letter-spacing: 1px; }
.contact-heading { font-size: clamp(40px, 6vw, 72px); font-weight: 900; color: var(--text); letter-spacing: 2px; line-height: 1; margin-bottom: 40px; }
.contact-desc { font-size: 17px; color: var(--muted); line-height: 1.75; }
.contact-top-img { overflow: hidden; }
.contact-top-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 下段 */
.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(0,0,0,0.1); }
.contact-action { display: flex; align-items: center; justify-content: space-between; padding: 40px 60px; border-bottom: 1px solid rgba(0,0,0,0.1); transition: background 0.3s; text-decoration: none; color: var(--text); }
.contact-action:first-child { border-right: 1px solid rgba(0,0,0,0.1); }
.contact-action:hover { background: rgba(0,0,0,0.03); }
.contact-action-label { font-size: 17px; font-weight: 700; letter-spacing: 2px; color: var(--text); margin-bottom: 10px; }
.contact-action-hours { font-size: 10px; font-weight: 400; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.contact-action-value { font-family: 'Noto Sans JP', sans-serif; font-size: 26px; font-weight: 300; letter-spacing: 3px; color: var(--text); }
.contact-action-value--sm { font-size: 18px; letter-spacing: 1px; }
.contact-action-arrow { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.2); border-radius: 50%; font-size: 18px; color: var(--text); flex-shrink: 0; transition: all 0.3s; }
.contact-action:hover .contact-action-arrow { background: var(--text); color: #fff; border-color: var(--text); }

@media (max-width: 768px) {
  .contact-top { grid-template-columns: 1fr; }
  .contact-top-text { padding: 56px 24px 40px; }
  .contact-top-img { height: 240px; }
  .contact-bottom { grid-template-columns: 1fr; }
  .contact-action { padding: 32px 24px; }
  .contact-action:first-child { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .contact-action-value { font-size: 20px; }
}

/* ─── Area SEO ─── */
.area-section { padding: 72px 24px 80px; background: var(--primary); }
.area-inner { max-width: 1000px; margin: 0 auto; }
.area-desc { text-align: center; font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 44px; line-height: 1.8; }
.area-group { margin-bottom: 36px; }
.area-group:last-child { margin-bottom: 0; }
.area-group h3 { font-size: 17px; font-weight: 600; color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px 4px; }
.area-tag { font-size: 12px; color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.06); padding: 5px 12px; border-radius: 6px; transition: background 0.3s, color 0.3s; }
.area-tag:hover { background: rgba(255,255,255,0.14); color: #fff; }
.area-note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 36px; line-height: 1.8; }

/* ─── Footer ─── */
.site-footer { background: #111; color: rgba(255,255,255,0.5); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 72px 40px 56px; }

/* 左列: ブランド・会社情報 */
.footer-col--info { display: flex; flex-direction: column; gap: 28px; }
.footer-brand { }
.footer-brand-link { text-decoration: none; display: inline-block; }
.footer-brand-link:hover .footer-brand-ja { opacity: 0.75; }
.footer-brand-ja { font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝', serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 4px; line-height: 1.4; margin-bottom: 6px; }
.footer-brand-en { font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.footer-address { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.5); }
.footer-tel-fax { display: flex; flex-direction: column; gap: 8px; }
.footer-tel-fax p { font-size: 17px; color: rgba(255,255,255,0.5); display: flex; align-items: baseline; gap: 10px; }
.footer-label { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.35); min-width: 28px; }
.footer-tel-fax a { font-family: 'Noto Sans JP', sans-serif; color: #fff; font-size: 22px; font-weight: 300; letter-spacing: 2px; line-height: 1; }
.footer-tel-fax a:hover { color: var(--accent); }
.footer-sns { display: flex; gap: 14px; }
.footer-sns-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: rgba(255,255,255,0.6); font-size: 18px; transition: all 0.3s; }
.footer-sns-icon:hover { border-color: var(--accent); color: var(--accent); }

/* 中列: ナビゲーション */
.footer-col--nav { }
.footer-nav { display: flex; flex-direction: column; gap: 0; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 18px; padding: 10px 0; transition: color 0.3s; display: block; }
.footer-nav a:hover { color: var(--accent); }
.footer-nav--prop a { font-size: 21px; padding: 8px 0; }

/* 右列 */
.footer-col--right { display: flex; flex-direction: column; justify-content: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 40px; text-align: center; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.3); line-height: 1.8; }

/* モバイル */
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 40px; }
  .footer-col--right { justify-content: flex-start; }
  .footer-tel-fax a { font-size: 18px; }
  .footer-col--right { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 32px; margin-top: -8px; }
  .footer-col--right .footer-nav { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ─── Page Hero (subpages) ─── */
.page-hero { padding: 140px 24px 80px; background: var(--primary); text-align: center; }
.page-hero .en { font-size: 11px; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; font-weight: 500; margin-bottom: 8px; }
.page-hero h1 { font-size: clamp(26px,4.5vw,36px); font-weight: 600; color: #fff; }
.page-hero .breadcrumb { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--accent); }

/* ─── Sitemap ─── */
.sitemap-wrap { display: flex; flex-direction: column; gap: 40px; }
.sitemap-group { border-left: 3px solid var(--accent); padding-left: 20px; }
.sitemap-heading { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.sitemap-heading i { color: var(--accent); font-size: 21px; }
.sitemap-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-list li::before { content: '─'; color: var(--accent); margin-right: 8px; font-size: 12px; }
.sitemap-list a { font-size: 18px; color: var(--text); transition: color 0.3s; }
.sitemap-list a:hover { color: var(--accent); }

/* ─── Company Table ─── */
.company-table { background: #fff; border-radius: 0; padding: 0; }
.company-row { display: grid; grid-template-columns: 140px 1fr; gap: 48px; padding: 0; font-size: 20px; align-items: start; }
.company-row .label { color: var(--text); font-weight: 700; font-size: 20px; line-height: 1.7; border-top: 2px solid rgba(0,0,0,0.75); padding-top: 28px; padding-bottom: 28px; }
.company-row .value { color: var(--text); line-height: 1.9; border-top: 2px solid rgba(0,0,0,0.75); padding-top: 28px; padding-bottom: 28px; }
.company-row:last-child .label { border-bottom: 2px solid rgba(0,0,0,0.75); }
.company-row:last-child .value { border-bottom: 2px solid rgba(0,0,0,0.75); }

.access { margin-top: 56px; }
.access h3 { font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 20px; text-align: center; }
.access-map { border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.access-map iframe { width: 100%; height: 320px; border: 0; display: block; }
.access-address { font-family: 'Noto Sans JP', sans-serif; text-align: center; font-size: 17px; color: var(--muted); margin-top: 14px; line-height: 1.8; }

.page-cta {
  max-width: 800px; margin: 56px auto 0;
  background: #fff;
  border: 2px solid #222;
  border-radius: 12px;
  padding: 52px 36px;
  text-align: center; color: var(--text);
  position: relative;
}
/* 左右のボーダーを白で塗りつぶし → 上下のラインのみ見せる */
.page-cta::before {
  content: "";
  position: absolute;
  top: 18px; left: -1%;
  width: 102%; height: calc(100% - 36px);
  background-color: #fff;
  z-index: 0;
}
.page-cta::after { display: none; }
.page-cta > * { position: relative; z-index: 1; }
.page-cta h3 { font-size: 22px; font-weight: 600; margin-bottom: 14px; color: var(--text); }
.page-cta p { font-size: 18px; color: var(--muted); margin-bottom: 32px; font-weight: 300; }

/* ─── Property Pages (Clean Line Design) ─── */
.page-hero--light { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); }
.page-hero--light h1 { color: var(--text); }
.page-hero--light .en { color: var(--muted); font-weight: 400; }
.page-hero--light .breadcrumb { color: rgba(0,0,0,0.3); }
.page-hero--light .breadcrumb a { color: rgba(0,0,0,0.45); }

/* ═══ 買う/借りる/貸す ページ共通 (prop-clean) ═══ */
.prop-clean-section { background: #fff; padding: 88px 40px; }
.prop-clean-inner { max-width: 860px; margin: 0 auto; }
.prop-clean-lead { max-width: 660px; margin: 0 auto 72px; text-align: center; font-size: 20px; color: var(--muted); line-height: 2.2; }
.prop-clean-features { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto 80px; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); }
.prop-clean-feature { padding: 52px 36px; border-right: 1px solid rgba(0,0,0,0.08); }
.prop-clean-feature:last-child { border-right: none; }
.prop-clean-feature-num { font-size: 40px; font-weight: 600; color: var(--accent); opacity: 0.6; line-height: 1; margin-bottom: 20px; }
.prop-clean-feature-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.5; }
.prop-clean-feature-text { font-size: 17px; color: var(--muted); line-height: 2; }
.prop-clean-steps-label { text-align: center; margin-bottom: 48px; }
.prop-clean-steps-label .en { font-size: 11px; letter-spacing: 4px; color: var(--muted); text-transform: lowercase; font-weight: 400; display: block; margin-bottom: 8px; }
.prop-clean-steps-label h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; color: var(--text); }
.prop-clean-step-list { border-top: 1px solid rgba(0,0,0,0.1); }
.prop-clean-step { display: grid; grid-template-columns: 72px 1fr; gap: 32px; padding: 44px 0; border-bottom: 1px solid rgba(0,0,0,0.1); align-items: start; }
.prop-clean-step-num { font-size: 36px; font-weight: 600; color: var(--accent); opacity: 0.55; line-height: 1; padding-top: 4px; }
.prop-clean-step h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.prop-clean-step p { font-size: 18px; color: var(--muted); line-height: 2.1; }
.prop-clean-cta { text-align: center; padding: 80px 24px; background: #fff; border-top: 1px solid rgba(0,0,0,0.08); }
.prop-clean-cta h3 { font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.prop-clean-cta p { font-size: 18px; color: var(--muted); margin-bottom: 32px; line-height: 1.9; }
@media (max-width: 768px) {
  .prop-clean-features { grid-template-columns: 1fr; }
  .prop-clean-feature { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 40px 24px; }
  .prop-clean-feature:last-child { border-bottom: none; }
  .prop-clean-step { grid-template-columns: 52px 1fr; gap: 20px; padding: 36px 0; }
  .prop-clean-section { padding: 64px 24px; }
}

/* ═══ 売るページ (page-sell) ═══ */

/* Hero */
.sell-hero { position: relative; height: clamp(420px, 60vw, 680px); overflow: hidden; }
.sell-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sell-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.sell-hero-content { position: absolute; bottom: 56px; left: 60px; color: #fff; }
.sell-hero-en { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; font-weight: 400; }
.sell-hero-title { font-size: clamp(36px, 5vw, 64px); font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 16px; border-bottom: 2px solid rgba(255,255,255,0.6); padding-bottom: 16px; display: inline-block; }
.breadcrumb--dark { font-size: 12px; color: rgba(255,255,255,0.65); }
.breadcrumb--dark a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb--dark a:hover { color: #fff; }

/* Statement */
.sell-statement { padding: 96px 40px; background: #fff; }
.sell-statement-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.sell-statement-heading { font-size: clamp(20px, 3vw, 30px); font-weight: 600; line-height: 1.8; color: var(--text); margin-bottom: 40px; }
.sell-statement-body { text-align: left; }
.sell-statement-body p { font-size: 20px; color: var(--muted); line-height: 2.2; margin-bottom: 20px; }
.sell-statement-body p:last-child { margin-bottom: 0; }
.sell-statement-carousel { overflow: hidden; background: #fff; padding-top: 28px; padding-bottom: 28px; }

/* カルーセル上下の飾り */
.carousel-border-deco {
  position: relative;
  height: 48px;
  background: #fff;
  overflow: hidden;
}
.carousel-border-deco--top::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5%;
  width: 90%;
  height: 200px;
  border: 2px solid #222;
  border-radius: 20px;
  background: transparent;
}
.carousel-border-deco--bottom::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 5%;
  width: 90%;
  height: 200px;
  border: 2px solid #222;
  border-radius: 20px;
  background: transparent;
}

/* Consult */
.sell-consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sell-consult-en { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); font-weight: 400; display: block; margin-bottom: 12px; }
.sell-consult-heading { font-size: clamp(24px, 3.5vw, 36px); font-weight: 600; line-height: 1.6; color: var(--text); margin-bottom: 36px; }
.sell-check-list { list-style: none; padding: 0; margin: 0; }
.sell-check-list li { font-size: 20px; color: var(--text); line-height: 1.7; padding: 14px 0 14px 36px; border-bottom: 1px solid rgba(0,0,0,0.08); position: relative; }
.sell-check-list li:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.sell-check-list li::before { content: "✓"; position: absolute; left: 8px; top: 14px; font-size: 18px; font-weight: 700; color: var(--text); }
.sell-consult-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block; }

/* Strengths */
.sell-strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sell-strength-card { text-align: center; }
.sell-strength-num { font-size: 11px; letter-spacing: 3px; color: var(--muted); font-weight: 400; margin-bottom: 20px; }
.sell-strength-img { margin-bottom: 24px; }
.sell-strength-img img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; display: inline-block; }
.sell-strength-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.5; }
.sell-strength-text { font-size: 17px; color: var(--muted); line-height: 2.1; text-align: left; }

/* Lease Strengths (1カラム・大型) */
.lease-strengths-list { display: flex; flex-direction: column; gap: 56px; }
.lease-strength-item {}
.lease-strength-img { margin-bottom: 24px; }
.lease-strength-img { margin-bottom: 24px; text-align: center; }
.lease-strength-img img { width: 100%; aspect-ratio: 7/5; max-width: 860px; object-fit: cover; border-radius: 10px; display: inline-block; }
.lease-strength-body { text-align: center; }
.lease-strength-num { font-size: 11px; letter-spacing: 4px; color: var(--muted); font-weight: 400; margin-bottom: 12px; }
.lease-strength-title { font-size: 33px; font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.5; }
.lease-strength-text { font-size: 30px; color: var(--muted); line-height: 2.2; }

/* Flow */
.sell-flow-list { display: flex; flex-direction: column; max-width: 640px; margin: 0 auto; position: relative; }
.sell-flow-item { display: grid; grid-template-columns: 68px 1fr; gap: 40px; align-items: flex-start; padding-bottom: 56px; position: relative; }
.sell-flow-item:last-child { padding-bottom: 0; }
.sell-flow-item:not(:last-child)::before { content: ''; position: absolute; left: 33px; top: 68px; bottom: 0; width: 1px; background: rgba(0,0,0,0.12); }
.sell-flow-num { width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid #111; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; gap: 3px; }
.sell-flow-num::before { content: 'STEP'; font-size: 7px; font-weight: 600; letter-spacing: 2.5px; color: var(--light); line-height: 1; }
.sell-flow-num span { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: 1px; }
.sell-flow-body { padding-top: 16px; }
.sell-flow-title { font-size: clamp(18px, 2.2vw, 22px); font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.sell-flow-text { font-size: 15px; color: var(--muted); line-height: 1.9; }
.sell-flow-arrow { display: none; }

/* Akiya */
.sell-akiya-lead { font-size: 20px; color: var(--muted); line-height: 2.2; margin-bottom: 48px; max-width: 720px; }
.sell-akiya-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 56px; }
.sell-akiya-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block; }
.sell-akiya-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 48px; }
.sell-akiya-col-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--text); }
.sell-bullet-list { list-style: none; padding: 0; margin: 0; }
.sell-bullet-list li { font-size: 18px; color: var(--text); line-height: 1.7; padding: 10px 0 10px 20px; border-bottom: 1px solid rgba(0,0,0,0.07); position: relative; }
.sell-bullet-list li::before { content: "—"; position: absolute; left: 0; top: 10px; color: var(--muted); font-size: 12px; }
.sell-bullet-list--accent li::before { content: "→"; }

/* Responsive */
@media (max-width: 768px) {
  .sell-hero-content { left: 24px; bottom: 36px; }
  .sell-hero-title { font-size: 36px; }
  .sell-statement { padding: 64px 24px; }
  .sell-statement-body p { font-size: 15px; line-height: 1.8; }
  .section { padding: 64px 20px; }
  .sell-consult-grid { grid-template-columns: 1fr; gap: 40px; }
  .sell-check-list li { font-size: 15px; }
  .sell-strengths-grid { grid-template-columns: 1fr; gap: 48px; }
  .sell-strength-img img { width: 160px; height: 160px; }
  .sell-flow-item { grid-template-columns: 52px 1fr; gap: 24px; padding-bottom: 40px; }
  .sell-flow-item:not(:last-child)::before { left: 25px; top: 52px; }
  .sell-flow-num { width: 52px; height: 52px; }
  .sell-flow-num span { font-size: 16px; }
  .sell-akiya-photos { grid-template-columns: 1fr; }
  .sell-akiya-2col { grid-template-columns: 1fr; }
  .sell-akiya-col-title { font-size: 15px !important; }
  .sell-bullet-list li { font-size: 15px !important; }
}

/* ─── Dark-section accent overrides (var(--accent) = black → use white on dark bg) ─── */
.section--dark .section-label .en { color: rgba(255,255,255,0.55); }
.page-hero .en { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: #fff; }
.svc-index-en { color: rgba(255,255,255,0.65); }
.svc-index-card:hover .svc-index-link { color: #fff; border-color: rgba(255,255,255,0.5); }
.area-group h3 { color: rgba(255,255,255,0.65); }
.footer-nav a:hover { color: #fff; }
.footer-tel-fax a:hover { color: rgba(255,255,255,0.7); }
.footer-sns-icon:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.nav-links a:hover { color: rgba(0,0,0,0.55); }

/* ═══ 貸すページ (page-lease) ═══ */
.lease-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lease-type-card { background: #fff; border-radius: 4px; overflow: hidden; }
.lease-type-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.lease-type-body { padding: 28px 24px; }
.lease-type-title { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.lease-type-text { font-size: 17px; color: var(--muted); line-height: 2.1; }
@media (max-width: 768px) {
  .lease-types-grid { grid-template-columns: 1fr; }
  .lease-strength-title { font-size: 20px; }
  .lease-strength-text { font-size: 17px; }
}

/* ═══ お問い合わせページ ═══ */
.contact-form-lead { font-size: 18px; color: var(--muted); line-height: 2.2; text-align: center; margin-bottom: 48px; }

.contact-form-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 64px; }
.contact-form-cta-item { display: flex; align-items: center; gap: 20px; padding: 28px 32px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; text-decoration: none; color: var(--text); transition: border-color 0.2s; }
.contact-form-cta-item:hover { border-color: var(--text); }
.contact-form-cta-item > i { font-size: 28px; color: var(--text); flex-shrink: 0; }
.contact-form-cta-label { font-size: 11px; letter-spacing: 2px; color: var(--muted); margin-bottom: 4px; }
.contact-form-cta-value { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: 1px; }
.contact-form-cta-hours { font-size: 11px; color: var(--muted); }

.contact-form-heading { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.1); }
.contact-form-wrap { border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; padding: 48px 40px; }

/* CF7 スタイル */
.wpcf7-form p { margin-bottom: 24px; }
.wpcf7-form label { display: block; font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(0,0,0,0.15); border-radius: 4px; font-size: 18px; color: var(--text); background: #fff; font-family: inherit; transition: border-color 0.2s; box-sizing: border-box; }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--text); }
.wpcf7-form textarea { height: 160px; resize: vertical; }
.wpcf7-form input[type="submit"] { display: inline-block; background: var(--text); color: #fff; border: none; padding: 16px 56px; font-size: 18px; font-weight: 600; letter-spacing: 2px; border-radius: 2px; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.wpcf7-form input[type="submit"]:hover { opacity: 0.75; }
.wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.wpcf7-response-output { margin-top: 24px; padding: 16px 20px; border-radius: 4px; font-size: 17px; border: 1px solid rgba(0,0,0,0.1); }

@media (max-width: 768px) {
  .contact-form-cta { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 20px; }
}

/* ═══ シンプルフロー（1カラム） ═══ */
.simple-flow { display: flex; flex-direction: column; max-width: 640px; margin: 0 auto; }
.simple-flow-item { border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; padding: 36px 40px; background: #fff; }
.simple-flow-step { font-size: 17px; letter-spacing: 3px; color: var(--muted); font-weight: 400; margin-bottom: 10px; }
.simple-flow-step span { font-size: 28px; font-weight: 700; color: var(--text); margin-left: 4px; letter-spacing: 0; }
.simple-flow-title { font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.simple-flow-text { font-size: 18px; color: var(--muted); line-height: 2.2; }
.simple-flow-arrow { text-align: center; font-size: 24px; color: var(--muted); padding: 12px 0; opacity: 0.35; }

/* ─── 404 ─── */
.error404-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; background: #fff; }
.error404-inner { text-align: center; max-width: 560px; }
.error404-num { font-size: clamp(80px, 15vw, 160px); font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 24px; letter-spacing: -4px; opacity: 0.08; }
.error404-title { font-size: clamp(20px, 3vw, 28px); font-weight: 600; color: var(--text); margin-bottom: 20px; }
.error404-text { font-size: 18px; color: var(--muted); line-height: 2; margin-bottom: 40px; }

/* ─── Fade In ─── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   物件情報 (Property)
═══════════════════════════════════════ */

/* ─── 検索フォーム ─── */
.prop-search-section { background: var(--bg); padding: 40px 24px; }
.prop-search-form { display: flex; flex-direction: column; gap: 20px; }

.prop-search-row { display: flex; align-items: flex-start; gap: 16px; }
.prop-search-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--text); white-space: nowrap; padding-top: 6px; min-width: 72px; }
.prop-search-field { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.prop-search-field--wrap { gap: 8px; }

.prop-search-row--cols { align-items: flex-end; gap: 16px; }
.prop-search-col { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.prop-search-col .prop-search-label { padding-top: 0; }

.prop-radio { display: inline-flex; align-items: center; gap: 6px; padding: 7px 18px; border: 1px solid rgba(0,0,0,0.15); border-radius: 999px; font-size: 14px; cursor: pointer; transition: all 0.2s; }
.prop-radio input { display: none; }
.prop-radio.is-active, .prop-radio:has(input:checked) { background: var(--text); color: #fff; border-color: var(--text); }

.prop-check { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid rgba(0,0,0,0.15); border-radius: 6px; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.prop-check input { display: none; }
.prop-check.is-active, .prop-check:has(input:checked) { background: var(--text); color: #fff; border-color: var(--text); }

.prop-search-select { width: 100%; padding: 9px 12px; border: 1px solid rgba(0,0,0,0.15); border-radius: 6px; font-size: 14px; color: var(--text); background: #fff; font-family: inherit; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

.prop-search-actions { display: flex; align-items: center; gap: 20px; padding-top: 4px; }
.prop-search-btn { font-size: 15px; padding: 13px 40px; letter-spacing: 2px; }
.prop-search-reset { font-size: 13px; color: var(--muted); text-decoration: underline; white-space: nowrap; }
.prop-search-reset:hover { color: var(--text); }

@media (max-width: 768px) {
  .prop-search-row { flex-direction: column; gap: 8px; }
  .prop-search-row--cols { flex-direction: column; }
  .prop-search-col { min-width: unset; width: 100%; }
  .prop-search-label { padding-top: 0; }
  .prop-search-actions { flex-direction: column; align-items: flex-start; }
  .prop-search-btn { width: 100%; text-align: center; }
}

/* ─── 件数表示 ─── */
.prop-result-count { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.prop-result-count strong { font-size: 20px; color: var(--text); margin-right: 4px; }

/* ─── 物件グリッド ─── */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .prop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .prop-grid { grid-template-columns: 1fr; } }

/* ─── 物件カード ─── */
.prop-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.prop-card--closed { opacity: 0.65; }

.prop-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.prop-card:hover .prop-card-img img { transform: scale(1.05); }

.prop-card-status { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; }
.prop-card-status--available { background: #1a1a1a; color: #fff; }
.prop-card-status--pending   { background: #e67e22; color: #fff; }
.prop-card-status--closed    { background: #888; color: #fff; }

.prop-card-type-badge { position: absolute; top: 12px; right: 12px; font-size: 10px; background: rgba(255,255,255,0.92); color: var(--text); padding: 3px 9px; border-radius: 4px; font-weight: 600; }

.prop-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prop-card-name { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.5; }
.prop-card-price { font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.2; }
.prop-card-price small { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 3px; }
.prop-price-ask { font-size: 14px; color: var(--muted); }
.prop-card-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.prop-card-specs span { font-size: 12px; background: var(--bg); color: var(--text); padding: 3px 10px; border-radius: 4px; }
.prop-card-station, .prop-card-address { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.prop-card-station i, .prop-card-address i { color: var(--text); font-size: 11px; }

/* ─── 結果なし ─── */
.prop-no-results { text-align: center; padding: 80px 24px; }
.prop-no-results i { font-size: 48px; color: rgba(0,0,0,0.15); margin-bottom: 20px; display: block; }
.prop-no-results p { font-size: 18px; color: var(--muted); line-height: 1.9; margin-bottom: 32px; }

/* ─── 詳細ページ ─── */
.prop-single-wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

.prop-single-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 56px; }
@media (max-width: 768px) { .prop-single-top { grid-template-columns: 1fr; gap: 32px; } }

.prop-single-main-img { width: 100%; border-radius: 12px; display: block; aspect-ratio: 4/3; object-fit: cover; }

.prop-single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.prop-single-status { font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 12px; border-radius: 4px; }
.prop-single-status--available { background: var(--text); color: #fff; }
.prop-single-status--pending   { background: #e67e22; color: #fff; }
.prop-single-status--closed    { background: #888; color: #fff; }
.prop-single-type, .prop-single-purpose { font-size: 11px; border: 1px solid rgba(0,0,0,0.2); padding: 3px 10px; border-radius: 4px; color: var(--muted); }

.prop-single-name { font-size: clamp(20px, 3vw, 28px); font-weight: 600; color: var(--text); line-height: 1.5; margin-bottom: 16px; }
.prop-single-price { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 4px; }
.prop-single-price small { font-size: 14px; font-weight: 400; color: var(--muted); margin-left: 4px; }
.prop-single-admin-fee { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

.prop-single-key-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(0,0,0,0.08); margin-bottom: 28px; }
.prop-single-key-item { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.prop-single-key-label { display: block; font-size: 10px; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.prop-single-key-value { font-size: 15px; font-weight: 600; color: var(--text); }

.prop-single-cta { display: flex; flex-direction: column; gap: 12px; }
.prop-single-cta-btn { text-align: center; font-size: 15px; padding: 15px 28px; letter-spacing: 1px; }
.prop-single-cta-tel { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(0,0,0,0.15); border-radius: 999px; padding: 12px 24px; font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: 2px; transition: all 0.2s; }
.prop-single-cta-tel:hover { background: var(--text); color: #fff; border-color: var(--text); }
.prop-single-cta--closed { text-align: center; background: var(--bg); border-radius: 12px; padding: 28px; }
.prop-single-cta--closed p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }

.prop-single-section { margin-bottom: 48px; }
.prop-single-section-title { font-size: 18px; font-weight: 600; color: var(--text); padding-bottom: 12px; border-bottom: 2px solid var(--text); margin-bottom: 20px; }

.prop-detail-table { display: flex; flex-direction: column; }
.prop-detail-row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 15px; }
.prop-detail-label { color: var(--muted); font-size: 13px; }
.prop-detail-value { color: var(--text); font-weight: 500; }

.prop-feature-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.prop-feature-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); padding: 7px 14px; border-radius: 6px; font-size: 13px; color: var(--text); }
.prop-feature-chip i { color: var(--text); font-size: 11px; }

.prop-map-frame { border-radius: 12px; overflow: hidden; }
.prop-map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

.prop-single-back { text-align: center; margin-top: 16px; padding-bottom: 16px; }

/* ─── Category Nav ─── */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky; top: 64px; z-index: 50;
}
.cat-nav-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; gap: 0; overflow-x: auto;
  padding: 0 24px;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-item {
  display: inline-block; white-space: nowrap;
  font-size: 14px; color: rgba(0,0,0,0.5);
  padding: 18px 22px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cat-nav-item:hover { color: var(--text); }
.cat-nav-item.is-active { color: var(--text); border-bottom-color: var(--text); font-weight: 600; }

@media (max-width: 768px) {
  .cat-nav { top: 58px; }
  .cat-nav-item { font-size: 13px; padding: 14px 16px; }
}

/* ─── News Archive ─── */
.news-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 18px; }

/* ─── News Pagination ─── */
.news-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.news-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 14px; color: var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.news-pagination a.page-numbers:hover,
.news-pagination .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }
.news-pagination .page-numbers.dots { border: none; width: auto; }

/* ─── Single Article ─── */
.single-article {
  background: var(--bg); border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(34,48,79,0.05);
}
.single-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.single-date { font-size: 13px; color: var(--light); }
.single-thumb { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.single-content { font-size: 15px; color: var(--muted); line-height: 2.2; }
.single-content h2 { font-size: 20px; font-weight: 600; color: var(--primary); margin: 32px 0 16px; }
.single-content h3 { font-size: 18px; font-weight: 600; color: var(--primary); margin: 24px 0 12px; }
.single-content p { margin-bottom: 18px; }
.single-content ul, .single-content ol { padding-left: 1.6em; margin-bottom: 18px; }
.single-content ul li { list-style: disc; }
.single-content ol li { list-style: decimal; }
.single-back { text-align: center; margin-top: 40px; }
.single-back .btn-primary { font-size: 13px; padding: 12px 40px; letter-spacing: 2px; }

@media (max-width: 768px) {
  .single-article { padding: 28px 20px; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-line-btn { display: none; }
  .nav-burger { display: flex; }
  .nav-sns { display: flex; }
  .site-nav { padding: 25px 16px 25px 28px; }
  .site-nav.scrolled { padding: 17px 16px 17px 28px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row.reverse .service-img, .service-row.reverse .service-txt { order: unset; }
  .flow-item { grid-template-columns: 1fr; gap: 20px; }
  .greeting-card { padding: 32px 24px 28px; }
  .greeting-main { grid-template-columns: 1fr; gap: 24px; }
  .greeting-photo img { aspect-ratio: 3/2; max-width: 280px; }
  .greeting-name { font-size: 22px; }
  .company-table { padding: 28px 20px; }
  .company-row { flex-direction: column; gap: 4px; font-size: 15px; }
  .company-row .label { min-width: unset; font-size: 15px; }
  .company-row .value { font-size: 15px; }
  .page-cta { padding: 40px 20px; }
}

/* ─── スマホ文字サイズ・行間 一括調整 ─── */
@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.7; }
  .svc-index-desc { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }

  /* 段落・本文テキスト */
  .prop-intro p,
  .service-txt p,
  .prop-clean-lead,
  .prop-clean-step p,
  .rent-story-body p,
  .greeting-body,
  .sell-akiya-lead,
  .lease-strength-text,
  .contact-form-lead,
  .simple-flow-text,
  .cta p,
  .story-body-v { font-size: 15px; line-height: 1.7; }

  /* 単一ブログ記事本文 */
  .single-content { font-size: 15px; line-height: 1.8; }

  /* 見出し系（大きすぎるもの） */
  .lease-strength-title { font-size: 20px; }
  .lease-strength-text { font-size: 15px; }
}

/* ─── トップページ専用ナビ（モバイルのみ） ─── */
@media (max-width: 1024px) {
  /* 初期状態: 背景なし・ロゴ＋バーガーのみ表示 */
  .home .site-nav:not(.scrolled) {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }
  .home .site-nav:not(.scrolled) .nav-links,
  .home .site-nav:not(.scrolled) .nav-line-btn {
    opacity: 0;
    pointer-events: none;
  }
  .home .site-nav:not(.scrolled) .nav-logo-ja {
    font-size: 20px;
    letter-spacing: 2px;
  }
  /* スクロール後: 他ページと同じ通常ヘッダー */
}
