/* =========================================================
   S-Build base stylesheet (cleaned & consolidated)
   目的:
   - 重複/競合の排除
   - レイアウトの一貫性 (PC/モバイル)
   - 既存HTMLにそのまま適用可能
========================================================= */

/* -------------------------
   Global / Reset
------------------------- */

/* =========================================================
   S-Build base stylesheet (cleaned & consolidated)
   スライドショー用CSSを含む
========================================================= */

:root {
  --header-h: 90px;
  --container-w: 1200px;
  --brand-blue: #0ea5e9;
  --text: #111;
  --muted: #666;
  --border: #e7edf3;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }

/* -------------------------
   Hero Section (Slider)
------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-img.active {
  opacity: 1;
}
.hero-overlay {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  z-index: 1;
  position: relative;
}
.hero-overlay h1 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin: 0;
}

/* 必要な既存セクションなどは省略（以下に追加してください） */


:root{
  --header-h: 90px;
  --container-w: 1200px;
  --brand-blue: #0ea5e9;
  --text: #111;
  --muted: #666;
  --border: #e7edf3;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Noto Sans JP",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container,
.page-container{
  width:100%;
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 40px;
}

/* -------------------------
   Header / Nav
------------------------- */
.site-header{
  position:fixed; top:0; left:0; right:0;
  height:var(--header-h);
  background:transparent;
  z-index:9999;
  display:flex; align-items:center;
  transition:background-color .3s ease, box-shadow .3s ease, color .3s ease;
}
.header-inner{
  width:100%;
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 40px;
  display:flex; align-items:center; justify-content:space-between;
}
.site-logo{ height:100px; max-width:200px; width:auto; }

.main-nav ul{
  list-style:none; display:flex; gap:32px; margin:0; padding:0;
}
.main-nav a{
  text-decoration:none; color:#fff; font-weight:500; font-size:16px;
  padding:14px 10px; display:block;
  transition:color .3s ease, background-color .3s ease;
}
.main-nav a:hover{ background:rgba(255,255,255,.2); border-radius:4px; }

/* スクロールで白化（トップ） */
.site-header.scrolled{
  background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.site-header.scrolled .main-nav a{ color:#333; }

/* サブページは常時白 */
.site-header.fixed-white{
  background:#fff !important; box-shadow:0 2px 10px rgba(0,0,0,.1);
}
.site-header.fixed-white .main-nav a{ color:#333; }
.site-header.fixed-white .main-nav a:hover{ background:rgba(0,0,0,.06); }

/* Hamburger */
.menu-toggle{ display:none; flex-direction:column; gap:6px; cursor:pointer; }
.menu-toggle span{ width:25px; height:3px; background:#fff; transition:all .3s ease; display:block; }
.site-header.scrolled .menu-toggle span,
.site-header.fixed-white .menu-toggle span{ background:#333; }
.menu-toggle.open span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

/* -------------------------
   Hero (Top)
------------------------- */
.hero-section{
  height:100vh;
  background:url('../images/fv1.jpg') center/cover no-repeat;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.hero-overlay {
  position: absolute;
  /* 左端から少し中央寄りに調整 */
  left: 10%;
  /* 下からの余白を大きくして上に配置 */
  bottom: 15%;

  max-width: min(80vw, 720px);
  padding: 14px 18px;

  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);

  z-index: 1;
  border-radius: 8px;
}

.hero-overlay h1 {
  margin: 0;
  line-height: 1.45;
  font-size: clamp(20px, 4.6vw, 40px);
  font-weight: 700;
}


/* 下段スライドイン画像（トップの装飾用） */
.slide-in-image{ opacity:0; transform:translateY(-40px); transition:all .8s ease-out; text-align:center; margin-top:30px; }
.slide-in-image.show{ opacity:1; transform:translateY(0); }
.slide-in-image img{ width:100%; max-width:1200px; height:auto; display:block; margin:0 auto; border-radius:8px; box-shadow:0 8px 24px rgba(0,0,0,.1); }

/* -------------------------
   Card section (会社案内3枚)
------------------------- */
.card-link{ text-decoration:none; color:inherit; display:block; }
.card-link:hover{ opacity:.9; }

.company-section{ padding:80px 20px; text-align:center; background:#fff; }
.section-title{ margin-bottom:40px; }
.section-title h2{ font-size:28px; font-weight:700; margin:10px 0 0; }
.section-title span{ font-size:16px; color:#555; }

/* PCは3列・同じ高さ、SPは縦積みフル幅 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  padding: 0 40px; /* ← 左右に余白追加 */
  max-width: 1100px;  /* ← コンテナ幅の上限 */
  margin: 0 auto;     /* ← 中央寄せ */
}


.card {
  background: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card img{ width:100%; height:auto; display:block; }
.card-caption{ background:var(--brand-blue); color:#fff; padding:20px 10px; }
.card-caption h3{ font-size:18px; margin:0 0 10px; }
.card-caption p{ font-size:14px; line-height:1.6; margin:0; }

.card::after{ content:""; position:absolute; inset:0; background:rgba(255,255,255,0); transition:background .25s ease; }
.card:hover{ transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,.12); }
.card:hover::after{ background:rgba(255,255,255,.35); }
.card:hover .card-caption{ background:rgba(255,255,255,.9); color:#000; }

/* -------------------------
   Subpage Hero / Page container
------------------------- */
.page-hero{
  width:100%; height:220px; background-position:center; background-size:cover;
  margin-top:var(--header-h); display:flex; align-items:flex-end;
}
.page-hero .page-hero-inner{
  width:100%; max-width:var(--container-w);
  margin:0 auto; padding:0 40px 18px;
  color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.page-container{ width:100%; max-width:var(--container-w); margin:24px auto 100px; padding:0 4vw; }

/* -------------------------
   Company Lead (会社概要：画像左 / テキスト右)
------------------------- */
.company-lead{
  width:100%; max-width:var(--container-w);
  margin:56px auto; padding:0 40px;
  display:grid; grid-template-columns:minmax(420px,1.05fr) minmax(420px,.95fr);
  gap:clamp(32px,6vw,72px); align-items:center;
}
.company-lead .lead-image{ max-width:640px; justify-self:start; }
.company-lead .lead-image img{ display:block; width:100%; height:auto; border-radius:0 !important; box-shadow:none !important; }

.company-lead .lead-text{ max-width:560px; line-height:1.85; }
.company-lead .lead-text h2{ font-size:clamp(20px,2.2vw,28px); margin:0 0 14px; font-weight:700; }
.company-lead .lead-text p{ margin:0 0 22px; font-size:clamp(15px,1.6vw,17px); }

/* CTA */
.btn-cta{
  display:inline-block; padding:14px 24px; background:#0ea5e9; color:#fff; text-decoration:none;
  font-weight:700; border-radius:0px; transition:transform .15s ease, filter .15s ease;
}
.btn-cta:hover{ transform:translateY(-1px); filter:brightness(1.05); }

/* -------------------------
   Business (青ラベル見出し/ギャラリー)
------------------------- */
.section-head{ position:relative; margin:48px 0 20px; padding-top:12px; }
.section-head::before{ content:""; position:absolute; left:0; right:0; top:0; height:2px; background:#dfe7ee; }
.section-label{
  display:inline-block; background:var(--brand-blue); color:#fff;
  font-weight:700; font-size:20px; padding:12px 18px; border-radius:6px; transform:translateY(-50%);
}
.service-block{ background:transparent; border:0; box-shadow:none; border-radius:0; margin:0 0 28px; }
.service-body{ padding:0; line-height:1.9; color:#111; }
.gallery-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin:28px 0 8px; }
.gallery-4 img{ width:100%; height:auto; display:block; }
.lead{ margin:14px 0 8px; font-size:1.05rem; }

/* -------------------------
   Company Info Table
------------------------- */
.info-table{
  width:100%; border-collapse:separate; border-spacing:0; border:1px solid var(--border);
  border-radius:6px; overflow:hidden; background:#fff;
}
.info-table th, .info-table td{ padding:18px 20px; vertical-align:top; border-bottom:1px solid var(--border); }
.info-table th{ width:26%; min-width:160px; background:#f5f9fc; font-weight:700; color:#222; vertical-align:middle; }
.info-table tr:last-child th, .info-table tr:last-child td{ border-bottom:0; }

/* -------------------------
   Access Map
------------------------- */
.access-map-section{ max-width:1100px; margin:64px auto; padding:0 24px; }
.access-map-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:12px; }
.access-map-title{ display:flex; align-items:baseline; gap:10px; margin:0; }
.access-map-title .jp{ font-size:22px; font-weight:700; }
.access-map-title .en{ font-size:14px; color:#6b7280; font-weight:600; }
.access-map-links{ display:flex; gap:10px; flex-wrap:wrap; }
.btn{ display:inline-block; padding:8px 12px; border-radius:8px; font-size:14px; text-decoration:none; transition:transform .15s ease, filter .15s ease, background-color .15s ease; }
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--brand-blue); color:#fff; }
.btn-ghost{ background:#eef2f7; color:#334155; }
.access-map-address{ margin:0 0 12px; color:#374151; font-size:15px; }
.access-map-embed{ position:relative; width:100%; aspect-ratio:16/9; border:1px solid #e5e7eb; border-radius:10px; overflow:hidden; background:#f9fafb; box-shadow:0 2px 10px rgba(0,0,0,.04); }
@supports not (aspect-ratio:16/9){ .access-map-embed{ height:0; padding-top:56.25%; } }
.access-map-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* -------------------------
   Footer (ダーク版で統一)
------------------------- */
.site-footer{ background:#f5f9fc; color:#222; font-size:.9rem; padding-top:30px; }
.footer-inner{
  max-width:1100px; margin:0 auto; padding:0 20px 30px;
  display:flex; flex-wrap:wrap; gap:40px; align-items:flex-start; justify-content:space-between;
}
.footer-logo img{ width:160px; height:auto; }
.footer-nav ul{ list-style:none; padding:0; margin:0; }
.footer-nav li{ margin-bottom:8px; }
.footer-nav a{ color:#222; text-decoration:none; transition:color .3s; }
.footer-nav a:hover{ color:#222; }
.footer-info p{ margin:0; line-height:1.6; }
.footer-bottom{ background:#111; text-align:center; padding:10px 0; font-size:.8rem; color:#bbb; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px){
  .hero-overlay h1{ font-size:2.4rem; }
  .section-label{ font-size:18px; padding:10px 14px; }
  .gallery-4{ grid-template-columns:repeat(2,1fr); gap:22px; }
}
@media (max-width: 900px){
  /* ヘッダー：ドロワー */
  .menu-toggle{ display:flex; }
  .main-nav{
    position:absolute; top:var(--header-h); right:0; left:0; display:none; width:100%;
    text-align:center; background:rgba(255,255,255,.85); backdrop-filter:blur(6px);
    box-shadow:0 4px 12px rgba(0,0,0,.15);
  }
  .main-nav.open{ display:block; }
  .main-nav ul{ flex-direction:column; gap:0; }
  .main-nav a{ padding:18px 12px; color:#111; font-size:15px; font-weight:600; letter-spacing:.5px; line-height:1.6; border-bottom:1px solid rgba(0,0,0,.08); background:transparent; }
  .main-nav a:hover{ background:rgba(0,0,0,.05); }

  /* company-lead：順序統一（テキスト→画像） */
  .company-lead{ grid-template-columns:1fr; gap:24px; margin:36px auto; padding:0 4vw; }
  .company-lead .lead-text{ order:1; max-width:none; }
  .company-lead .lead-image{ order:2; max-width:none; }
}
@media (max-width: 560px) {
  .hero-overlay {
    left: max(14px, env(safe-area-inset-left));
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 10px 12px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
    line-height: 1.4;
  }

  .gallery-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Company info table：SPで見やすく段替え */
@media (max-width: 768px){
  .info-table{ border:0; }
  .info-table tbody{ display:block; }
  .info-table tr{
    display:block; border:1px solid var(--border); border-radius:6px;
    margin:0 0 12px; overflow:hidden; box-shadow:inset 0 1px 0 rgba(0,0,0,.03);
  }
  .info-table th, .info-table td{
    display:block; width:100%; min-width:0; border:0 !important; padding:14px 16px; line-height:1.8; word-break:break-word;
  }
  .info-table th{ background:#f5f9fc; font-weight:700; color:#222; border-bottom:1px solid var(--border) !important; }
  .info-table tr:last-child{ margin-bottom:0; }
}

/* Card grid：SPは縦積み・全幅で統一 */
@media (max-width: 768px){
  .card-grid{ flex-direction:column; align-items:stretch; gap:16px; padding: 0 5vw!important; }
  .card{ width:100%; max-width:none; margin:0; }
}


/* ===== Card balance fix (全カードの高さ/見え方を統一) ===== */

/* 画像の縦横比を固定し、トリミングで統一感を出す */
.card img{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;     /* 4/3にしたい場合は 4 / 3 に */
  object-fit: cover;        /* 画像をはみ出しトリミングして揃える */
}

/* キャプション帯の高さ・配置を統一（どのクラス名でも拾えるように冗長指定） */
.card-caption,
.card .caption,
.card .card-text{
  background: var(--brand-blue);
  color: #fff;
  padding: 20px 16px;
  min-height: 130px;        /* ここで帯の“背の高さ”を揃える */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 見出しと説明文を中央寄せ */
  align-items: center;
  text-align: center;
}

.card-caption h3,
.card .caption h3,
.card .card-text h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.card-caption p,
.card .caption p,
.card .card-text p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* 各カードの高さを“同じ”に伸ばす（PC時） */
@media (min-width: 769px){
  .card-grid{
    align-items: stretch !important;   /* center → stretch に上書き */
    gap: 28px;
  }
  .card{
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

/* 不要な薄白オーバーレイを無効化（カードが白っぽく見える原因の排除） */
.card::after{ display: none !important; }

/* ホバー時にキャプション色を反転しない（常に青帯のまま） */
.card:hover .card-caption,
.card:hover .caption,
.card:hover .card-text{
  background: var(--brand-blue) !important;
  color: #fff !important;
}
/* カードグリッド */
.card-grid {
  display: grid;
  gap: 28px;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* スマホ：1列 */
@media (max-width: 767px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* タブレット：2列 */
@media (min-width: 768px) and (max-width: 1023px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PC：3列 */
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* カード */
.card {
  background: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* フッター：モバイル時に縦並び */
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 0 16px 30px;
  }

  .footer-logo,
  .footer-nav,
  .footer-info {
    width: 100%;
    text-align: center;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .footer-nav li {
    display: block;
    margin: 0;
  }

  .footer-nav a {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
  }
}


/* ===== Properties page (photo-only grid) ===== */
.property-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.property-item{
  display:block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.property-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.property-item img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio: 4/ 3;
  object-fit: cover;
}

/* hidden links for gallery registration */
.hidden{ display:none !important; }

/* ===== Lightbox (shared) ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(0,0,0,.92);
  padding: 60px 16px 16px;
}
.lightbox-content {
  display: block;
  margin: 0 auto;
  max-width: min(92vw, 1200px);
  max-height: 78vh;
}
.lightbox-caption{
  color:#ccc;
  text-align:center;
  margin-top: 10px;
  font-size: 14px;
}
.lightbox .close{
  position:absolute;
  top: 16px;
  right: 20px;
  color:#fff;
  font-size: 36px;
  line-height:1;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.prev, .next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 0;
  padding: 14px 18px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  user-select: none;
}
.prev{ left: 10px; }
.next{ right: 10px; }

@media (max-width: 560px){
  .property-grid{ padding: 0 16px; gap: 18px; }
}
@media (max-width: 767px) {
  .footer-info {
    text-align: left;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* SP時：フッターのメニュー（青いUL）を中央に */
/* === Footer (SP) : ULを中央、文字は左寄せ === */
@media (max-width: 767px){
  /* 親でULを中央配置 */
  .site-footer .footer-nav{
    display:flex;
    justify-content:center;
  }

  /* UL自体の箱サイズを決めて中央に */
  .site-footer .footer-nav ul{
    margin:0;
    padding:0;
    width:100%;
    max-width:420px;        /* お好みで 360〜480px などに */
    display:flex;
    flex-direction:column;
    align-items:stretch;     /* 既存の center を上書き */
    gap:0;
  }

  /* 項目の見た目（タップしやすく） */
  .site-footer .footer-nav li{
    list-style:none;
    border-bottom:1px solid rgba(0,0,0,.06);
  }
  .site-footer .footer-nav li:last-child{
    border-bottom:0;
  }

  /* 文字は左寄せ、横幅いっぱいを押せるように */
  .site-footer .footer-nav a{
    display:block;
    padding:12px 14px;
    text-align:left;         /* 既存の center を上書き */
  }
}
/* === Footer (SP): ULを中央配置、文字は左寄せ === */
@media (max-width: 767px){
  /* 親でULの箱を中央へ */
  .site-footer .footer-nav{
    display: flex !important;
    justify-content: center !important;
  }

  /* UL自体の幅を狭めて中央に */
  .site-footer .footer-nav ul{
    width: 100%;
    max-width: 420px;        /* 360〜480pxでお好み調整 */
    margin: 0 auto !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch !important;  /* ←項目は左右に広げる */
  }

  /* 項目は左寄せ＆タップしやすく */
  .site-footer .footer-nav a{
    display: block;
    padding: 12px 14px;
    text-align: left !important;
  }
}


/* 物件カード（画像＋物件名） */
.property-card{
  display: flex;
  flex-direction: column;
}

/* 物件名（背景なし・中央揃え） */
.property-name{
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}




/* ===== President profile (Message page) ===== */
/* ===== President profile (Message page) — final, deduplicated ===== */
.president-section{
  margin: 24px 0 40px;
}

/* レイアウト：写真 260px｜名前 360〜520px｜サイン 200〜260px */
.president-card{
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(360px,520px) minmax(200px,260px);
  column-gap: 5vw;
  align-items: center;

  background: linear-gradient(135deg, #f8fafc 0%, #eef4f9 100%);
  border: 1px solid #e7edf3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

/* 右上に淡いアクセント */
.president-card::before{
  content:"";
  position:absolute;
  right:-40px; top:-40px;
  width: 220px; height: 220px;
  background: radial-gradient(120px 120px at 70% 30%, rgba(14,165,233,.18), transparent 60%);
  pointer-events:none;
}

/* 写真 */
.president-photo-wrap{
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
}
.president-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 中央：役職・氏名 */
.president-body{
  max-width: 520px;         /* gridの中央列と合わせて広がり防止 */
}
.president-title{
  margin: 0 0 4px;
  font-weight: 700;
  color: #6b7280;
}
.president-name{
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  white-space: nowrap;       /* 折り返して段崩れしないように */
}

/* 右：サイン */
.president-sign-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* 列幅＝画像幅なので右寄せ不要 */
}
.president-sign{
  width: 100%;
  max-width: 240px;          /* 200〜260pxあたりでお好み調整 */
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  opacity: .98;
}

/* レスポンシブ：縦並び＆中央寄せ */
@media (max-width: 780px){
  .president-card{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px;
  }
  .president-photo-wrap{
    margin: 0 auto 10px;
    max-width: 260px;
  }
  .president-body{ max-width: none; }
  .president-sign-wrap{ justify-content: center; margin-top: 8px; }
  .president-sign{ max-width: 160px; }
}

/* 認証リンク（会社概要） */
.info-table .cert-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:6px;
  padding:8px 10px;
  border:1px solid #dbeafe;
  border-radius:6px;
  background:#f0f7ff;
  text-decoration:none;
  color:#0f4aa1;
}
.info-table .cert-link:hover{
  background:#e8f2ff;
}
.info-table .cert-link img{
  height:32px; /* ロゴの見た目で調整 */
  width:auto;
}


/* ===== Property Map Section ===== */
.property-map {
  /* page-container と同じ“始点”に揃えるため、余白をゼロに */
  margin: 60px 0;
  padding: 0;         /* ← ここを 0 に */
  max-width: none;    /* 狭い別コンテナにしない（page-containerの幅に合わせる） */
}

.property-map h2 {
  margin-bottom: 20px;
  text-align: left;   /* 左寄せ（所有物件一覧と同じ） */
}

.property-map .map-container {
  text-align: center; /* 画像は中央寄せ */
}

.property-map img {
  width: 80%;         /* PCでは8割表示 */
  height: auto;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* スマホは全幅で */
@media (max-width: 768px) {
  .property-map img { width: 100%; }
}


