body{font-size:clamp(14px, 1.6vw, 16px);line-height:1.7}
body p,body h2{margin-block-start: 1em;margin-block-end: 1em;}
/* 背景画像付きメインビジュアル */
.mv {
  position: relative;
  width: 100%;
  /* 画面幅に応じて高さを自動調整 */
  min-height: clamp(260px, 40vw, 420px);
  background-image: url("../img/mv.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* 幅可変対応 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px; /* スマホ時に左右に余白を確保 */
  box-sizing: border-box;
}

/* 青い角丸パネル（イラレの.st0をベースに調整） */
.st0 {
  background-color: rgba(38, 91, 166, 0.88); /* opacity は使わず背景だけ透過 */
  border-radius: 22px;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  /* レイアウト用に追加 */
  padding: clamp(16px, 2.4vw, 24px) clamp(24px, 4vw, 40px);
  max-width: 430px;
  width: 100%;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.3);
}

/* テキスト部分（イラレの.stをベースにレスポンシブ化） */
.st,
.mv-text {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system,
               BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  /* 画面幅に応じてフォントサイズを可変に */
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}

.topmap{
	max-width:1232px;
	width:100%;
	padding:16px;
	margin:40px auto 0;
	
}
.ttl{font-size: clamp(18px, 2.4vw, 24px);
	margin-bottom:30px}

.catch {font-size: clamp(8px, 1.6vw, 16px);}
.property-list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

.property-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.property-media {
  flex: 0 0 36%;          /* 左の画像幅（PC） */
  max-width: 430px;
}

.property-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右側テキスト部分 */
.property-body {
  flex: 1;
}

.property-title {
  margin: 0 0 8px;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
	line-height:1.5;
}

.property-price {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.4;
}

.property-meta {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.4;
}

.property-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* バッジ */
.property-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.property-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background-color: #ff8a00;  /* ベースのオレンジ */
}

/* 状態別に色を分けたい場合 */
.property-badge.is-empty {
  background-color: #ff8a00;
}

.property-badge.is-campaign {
  background-color: #ff6600;
}

/* --- レスポンシブ --- */
@media (max-width: 900px) {
  .property-card {
    gap: 24px;
  }

  .property-media {
    flex-basis: 40%;
  }
}

@media (max-width: 768px) {
  .property-card {
    flex-direction: column;
  }

  .property-media {
    flex-basis: auto;
    max-width: 100%;
  }

  .property-body {
    width: 100%;
  }

  .property-title {
    font-size: clamp(18px, 5vw, 22px);
  }

  .property-desc {
    font-size: 14px;
  }
}

.is-upcoming{background-color:#e4bf7f !important}
.is-occupied{background-color:#555555 !important}

/* ===== 最新ニュース・トピックス ===== */
.home-news {
  background: #d9e2ed;        
  padding: 40px 0;
  margin: 60px 0;
}

.home-news__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.home-news__heading {
  text-align: center;
  font-size: 18px;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 18px;
  color: #333;
}

/* 枠＋区切り線のリスト */
.home-news__list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-news__item + .home-news__item {
  border-top: 1px solid #e5e7eb;
}

.home-news__link {
  display: grid;
  grid-template-columns: 170px 1fr; /* 日付 / タイトル */
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: #111;
}

.home-news__link:hover .home-news__title {
  text-decoration: underline;
}

.home-news__date {
  color: #6b7280;
  white-space: nowrap;
  font-feature-settings: "palt";
}

.home-news__title {
  display: inline-block;
  line-height: 1.6;
}

/* 一覧ボタン（青・丸タブ＋矢印） */
.home-news__more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.home-news__moreBtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #1e5aa6;
	color:#fff;
    width: 230px;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(30, 90, 166, .30);
    transition: transform .18s 
ease, box-shadow .18s 
ease, opacity .18s 
ease;
}

/* ホバーで影が減って“凹む”感じ */
.home-news__moreBtn:hover {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(30,90,166,.22);
  opacity: .96;
　color:#fff !important;	
	
}

/* 右矢印（CSSで図形） */
.home-news__moreArrow {
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* レスポンシブ微調整 */
@media (max-width: 640px) {
  .home-news__link {
    grid-template-columns: 1fr; /* 縦積み */
    gap: 6px;
  }
  .home-news__date {
    font-size: 14px;
  }
}

/* visitedで暗くならないよう固定 */
.home-news__moreBtn:visited{
  color:#fff !important;
}


/* ===== information カテゴリー アーカイブ ===== */
.news-archive {
  background: #d9e2ed;
  padding: 50px 0;
  margin: 0;
}
.news-archive__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}
.news-archive__heading {
  text-align: center;
  font-size: 18px;
  letter-spacing: .08em;
  font-weight: 600;
  margin: 0 0 18px;
  color: #333;
}

/* 日付＋タイトルのみの行リスト */
.news-archive__list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-archive__item + .news-archive__item {
  border-top: 1px solid #e5e7eb;
}
.news-archive__link {
  display: grid;
  grid-template-columns: 170px 1fr; /* 日付 / タイトル */
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  text-decoration: none;
  color: #111;
}
.news-archive__link:hover .news-archive__title {
  text-decoration: underline;
}
.news-archive__date {
  color: #6b7280;
  white-space: nowrap;
  font-feature-settings: "palt";
}
.news-archive__title {
  line-height: 1.6;
}

/* ページネーション */
.news-archive__pager {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}
.news-archive__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #111;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.news-archive__pager .page-numbers.current {
  background: #1e5aa6;
  color: #fff;
  border-color: #1e5aa6;
}
.news-archive__pager .page-numbers:hover {
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(30,90,166,.22);
}

/* SP */
@media (max-width: 640px) {
  .news-archive__link {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .news-archive__date { font-size: 14px; }
}

/* ===== news single (カテゴリー: information) ===== */
.news-single { background: #f5f6f8; padding: 56px 0; }
.news-single__inner { width: min(1100px, 92%); margin: 0 auto; }
.news-single__kicker {
  text-align: center; font-size: 18px; letter-spacing: .08em; font-weight: 600;
  color: #333; margin: 0 0 18px;
}
.news-single__article {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
  box-shadow: 0 12px 28px rgba(16,24,40,.06);
  padding: 28px 28px 32px;
}
.news-single__header { display: grid; grid-template-columns: 180px 1fr; gap: 16px; align-items: baseline; }
.news-single__date { color: #6b7280; white-space: nowrap; font-feature-settings: "palt"; }
.news-single__title { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; margin: 0; color: #111; font-weight: 700; }
.news-single__divider { height: 1px; background: #e5e7eb; margin: 18px 0 22px; }

/* 本文体裁（Gutenberg/WYSIWYG を整える） */
.news-single__content { color: #111; font-size: 16px; line-height: 1.9; }
.news-single__content p { margin: 1em 0; }
.news-single__content h2 { font-size: 20px; margin: 1.6em 0 .6em; border-left: 4px solid #1e5aa6; padding-left: .6em; }
.news-single__content h3 { font-size: 18px; margin: 1.4em 0 .5em; }
.news-single__content ul, .news-single__content ol { padding-left: 1.4em; margin: .8em 0 1.2em; }
.news-single__content a { color: #1e5aa6; text-decoration: underline; }
.news-single__content img, .news-single__content figure { max-width: 100%; height: auto; }
.news-single__content blockquote { border-left: 3px solid #e5e7eb; margin: 1.2em 0; padding: .6em 1em; color: #374151; background: #fafafa; }

/* 前後ナビ＋一覧へ戻る */
.news-single__footer { margin-top: 28px; }
.news-single__nav { display: flex; justify-content: space-between; gap: 12px; }
.news-single__nav a { text-decoration: none; color: #1e5aa6; }
.news-single__nav a:hover { text-decoration: underline; }

.news-single__back { display: flex; justify-content: center; margin-top: 20px; }
.news-single__backBtn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: #1e5aa6; color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 14px 28px rgba(30,90,166,.30);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  color:#ffffff !important;
}
.news-single__backBtn:hover { transform: translateY(1px); box-shadow: 0 6px 14px rgba(30,90,166,.22); opacity: .96; }
.news-single__backArrow {
  width: 0; height: 0; border-left: 8px solid currentColor; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .news-single__article { padding: 22px 18px 26px; }
  .news-single__header { grid-template-columns: 1fr; gap: 6px; }
  .news-single__date { font-size: 14px; }
}

.single-newhouse article,.nav-links{max-width:1440px;width:100%;margin:0 auto;}
.nav-links{margin-top:40px}
.page-template-default article{max-width:960px;width:100%;margin:0 auto;}
@media (max-width: 1440px) {
	.single-newhouse article,.nav-links{padding:0 16px}
}
@media (max-width: 960px) {
	.page-template-default article{padding:0 16px}
}
.single-newhouse article h1,.page article h1{font-size: clamp(24px, 3.2vw, 36px);line-height:1.7;margin-block-end: 1em;font-weight: 700;
    letter-spacing: .02em;}
.single-newhouse article h2,.page article h2{font-size: clamp(20px, 2.6vw, 28px);line-height:1.7;margin: 28px 0 16px;padding-left: 14px !important;
    border-left: 4px solid #265ba6;}
.single-newhouse article h3,.page article h3{font-size: clamp(18px, 2.2vw, 22px);;line-height:1.7;margin: 0px 0 24px;}
.single-newhouse article p,.page article p{font-size:clamp(16px, 1.8vw, 18px);line-height:1.7}
.single-newhouse article strong,.page article strong{font-weight:bold}
.single-newhouse .post-thumbnail img,.page .post-thumbnail img{margin:0 auto;display: block;}


.room-info a{text-decoration: underline !important}
h1.entry-title{ 
    margin-bottom: 17px;
    line-height: 1.9;
    padding: 6px 0 0 37px;
    position: relative;
    z-index: 1;}
h1.entry-title:before{
	content: "";
    display: block;
    width: 26px;
    height: 4px;
    position: absolute;
    z-index: 1;
    top: clamp(26px, 3.4vw, 40px);
    left: 3px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #265ba6;
}

/* フローティングCTAコンテナ */
/* 通常：画面下に固定 */
.floating-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 14px 20px;
    background: #efefef;
    backdrop-filter: blur(6px);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -16px 30px rgba(0, 0, 0, .16);
}

.floating-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* フローティングCTA内だけ：幅300px & 余計なmarginを殺す（既存ボタン流用） */
.floating-cta__btn{
  width: 350px !important;
  margin: 0 !important; /* .inqbtn/.appbtn の margin:20px を無効化 */
	padding:20px !important;
}

/* 着地モード：#footerGroupの下に通常要素として表示 */
.floating-cta.is-docked{
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  padding: 18px 0 24px;
  background: transparent;
  backdrop-filter: none;
  border-top: 0;
  box-shadow: none;
}

/* PCのみ表示 */
@media (max-width: 1024px){
  .floating-cta{ display:none; }
}
@media (min-width: 1024px){
.single-room #footerGroup{
  padding-bottom: 140px;
}
}

.inqbtn:active, .appbtn:active, .appbtn:hover, .inqbtn:visited, .inqbtn:hover, .appbtn:visited {
    color: #FFF;
}
/* ホバーで影が減って“凹む”感じ */
  .inqbtn:hover,
  .appbtn:hover {
    transform: translateY(1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .22);
    opacity: .96;
    color: #FFF;
  }
.inqbtn {
    display: block;
    width: 100%;
    background: #e6552b;
    padding: 14px 28px;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .30);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    margin: 20px 0 0;
}
.appbtn {
    display: block;
    width: 100%;
    background: #265ba6;
    padding: 14px 28px;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .30);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    margin: 20px 0 0;
}

.wp-block-gallery,.wp-block-columns{margin-bottom:1em}
.single-newhouse .wp-block-gallery .wp-block-image,.single-newhouse .wp-block-columns .wp-block-image{border:1px solid #b7b7b7;padding:10px}